All this and more in this weekâs edition of The Hypha Wire, from Hypha HubSpot Development.
Welcome back to The Hypha Wire!
Presumably, you know by now that Taylor Swift has announced her latest album on the New Heights podcast, smashing records everywhere:
âBy Thursday afternoon, Wednesday nightâs talk had already been seen more than 11.7 million times on YouTube. But thatâs only a fraction of its circulation â clips distributed on Instagram, TikTok, X and elsewhere have received more than 400 million views, and the episode was also available for streaming on audio platforms.â
If only all podcast hosts could have Taylor on their pods!
After she revealed the album (âThe Life of a Showgirlâ), brands and content creators were quick to jump in on the fun, offering their take on the cover art.
I wanted to share a few of my favorites, because times are a little rough out there, and having fun, global social media moments are enough to lighten the mood (if for a time). Enjoy!
The original:
-Sage Levene, VP of Marketing, Hypha HubSpot Development
Open Mic
Working Around HubSpot Workflow Custom Code Action Limitations
By Zack Lyons, Integrations Developer, Hypha HubSpot Development
If you or a client use Operations Hub Pro and leverage custom code actions, you can make connections to your other applications, process large batches of HubSpot records using the API, and build out behavior your team needs to automate.
There are some limitations that you may encounter during your development, which can be frustrating and challenging to work around. Letâs discuss some of those limitations and a few ways to mitigate them that weâve figured out at Hypha.
HubSpot API Rate Limit
When using the HubSpot API, there are limitations. Regular endpoints have a burst limit of 100-250 requests per 10 seconds. The Search endpoints have a rate limit of 5 requests per second. This can be frustrating when 10,000+ records are enrolled at once, when you turn on a new workflow, and your custom code actions start hitting those limits and throwing errors. HubSpot actually returns the number of requests left to you in the current 10-second interval, and you can use that in your code to make decisions!
In the Node.js code above, we see that the HubSpot response headers object has a property called âx-hubspot-ratelimit-secondly-remainingâ that indicates the number of requests remaining before we start receiving rate limit errors. In the code block above, we see that if we are almost out of requests, we can pause for a beat to let that burst (or âsecondlyâ) limit reset.
Note: As of August 13, 2025 there is a HubSpot beta for rate-limiting code actions from the UI, which may be worth experimenting with!
Mitigate Rate Limits Using Multiple Private Apps
Another option at your disposal is the creation of multiple private apps. Each private app you create in your HubSpot settings yields a new API key, with its own API limit. One possible solution to hitting rate limits is to create two or even three private apps and use them in tandem in your workflow. For example, in a single custom code action, you may use:
Private App Aâs API key for fetching Contacts in your Hub
Private App Bâs API key for fetching relevant Companies in your Hub
Private App Câs API key for associating the Contacts and Companies that should be paired
This solution effectively triples your rate limit with little setup, albeit being a little cobbled together.
Breaking Your Custom Coded Actions Into Two Actions via Callback
According to the documentation, âCustom code actions must finish running within 20 seconds and can only use up to 128 MB of memory. Exceeding either of these limits will result in an error.â
This can be a problem when you have a large batch of records to process. When youâre up against the clock, it can be useful to break the steps into multiple custom code actions!
By splitting the work up between two or more actions you can extend that 20 second & 128 MB limit for processing. But how do we pass data from one action to another? Using the callback feature of your custom code actions, you can stringify your data and pass it to a callback for the next code block to use:
In the image above we take a list of Contact IDâs and provide them to the callbackâs âoutputFieldsâ object in a new property called âcontactListâ (or whatever variable name is appropriate for your use case). Then in the next code action, under âChoose data variable,â select âAction outputsâ and youâll see your contactList data that you output from the previous code action!
Hopefully these techniques can help you squeeze a little extra horsepower out of your Workflow Custom Code actions! And if thereâs anything we left out, reach out and let us know what techniques your team is using to make the most out of your Hubs.
Generative engine optimization (GEO) isnât being prioritized by many. My take: Thereâs plenty of room for trial, error, and experimentation before full-scale disruption. Better to be on the train earlier than later.
âEventually, this shift will come irrespective of publishersâ feelings. And when it does, theyâll have no choice but to reassess where GEO fits into the mix. In fact, some publishers are already doing just that.â
AI tools are here, and theyâre not going away. It behooves businesses to develop policies around the tools and their role in the workplaceâwhether that is to embrace them or ban them. And if itâs the former, training should absolutely be provided to encourage employees to learn how to work with these tools, not against them.
âOur survey of more than 1,000 AI users reveals a workplace rushing to adopt AI, but failing to properly support it. Thereâs a shadow army of AI-powered employees working without oversight, and in many cases, without permission.â
Hypha Highlights
HubSpot rolled out HIPAA-support features in 2024âmarking a pivotal development for healthcare providers, insurance companies, and other organizations handling Protected Health Information (PHI).
For years, these groups were effectively locked out of using one of the most popular CRMs due to regulatory limitations. With new compliance tools, HubSpot has opened the door to a unified, modern CRM experienceâunder very specific conditions.
This guide outlines what HIPAA support in HubSpot actually means, whatâs included in the Business Associate Agreement (BAA), and how to configure the platform correctly to stay compliant. If your organization works with PHI and is exploring CRM or marketing automation platforms, understanding these details is essential before moving forward.
Fall 2025 HubSpot Academy Bootcamp registration is now open! Make sure to register soon, theyâll fill up quickly.
AI in Action
News, updates and tools from the AI industry.
Your weekly AI roundup:
Former Twitter CEO Parag Agrawal has raised $30 million for his new AI startup, Parallel Web Systems, which builds infrastructure specifically for AI agents to search and analyze web information. The companyâs âdeep researchâ API aims to solve a bottleneck; helping AI agents gather reliable, cited information from the web with confidence scores.
Meta is facing calls for congressional investigation after Reuters revealed internal policies that explicitly allowed the companyâs AI chatbots to engage in inappropriate conversations with children. What this means for the AI industry: as companies rush to deploy conversational AI at scale, the lack of robust federal oversight is creating massive liability risks.
Big Techâs AI data center boom is driving up electricity bills for everyone, with residential rates already climbing 30% since 2020 and projected to rise another 8â25% by 2030 in data center-heavy regions. The core issue: While Amazon, Google, and Microsoft consume massive amounts of power for AI training, theyâre pushing utilities to spread grid upgrade costs across all customers rather than paying the full price themselves. As tech giants become dominant energy players, the hidden infrastructure costs of the AI revolution are being quietly passed down to consumers through higher utility bills.
âFrom âbrainrotâ memes and incel slang to the trend of adding â-coreâ to different influencer aesthetics, the internet has ushered in an unprecedented linguistic upheaval. Weâre entering an entirely new era of etymology, heralded by the invisible forces driving social media algorithms. Thankfully, Algospeak is here to explain. As a professional linguist, Adam Aleksic understands the gravity of language and the way we use it: he knows the ways it has morphed and changed, how it reflects society, and how, in its everyday usage, we carry centuries of human history on our tongues.â
How can we help you?
Case Study: Salesforce to HubSpot Migration
An EdTech company faced a critical challenge: their customer data was scattered across Salesforce, Jira, QuickBooks, and various disconnected tools, creating operational blind spots and limiting their growth potential. With a cutover deadline looming, they needed to migrate 33,000+ contacts while preserving the complex institutional relationships that make educational sales uniqueâwithout disrupting ongoing business operations.
Through meticulous planning and custom API development, Hypha successfully unified their fragmented tech stack onto the HubSpot platform. The four-month migration delivered on schedule with zero data loss, transforming their manual processes into systematic workflows that scale with their business.
Is your tech stack holding your team back? Contact Hypha to discover how we can unify your systems and unlock operational efficiency through strategic HubSpot implementation.