Mobile Proxies in Zapier and n8n Workflows
Workflow tools are where a lot of small automation lives: a form submission kicks off an enrichment call, a schedule pulls a price and posts it to Slack, a webhook rotates a proxy before a scraper runs. Zapier and n8n are the two most common choices, and they handle proxies very differently because one runs in someone else's cloud and the other usually runs on your own server. This page shows how a NeonProxies line fits into each, including calling the rotation link from a workflow, and the limits worth knowing before you design around them.
n8n: proxy per request, on your own host
Self-hosted n8n gives you control of the network. The HTTP Request node includes a proxy option, so you can send a specific request through a line by entering the proxy URL with the line's username and password, while every other node keeps using the server's normal connection. That per-node choice is the cleanest pattern: only the calls that need a US carrier vantage point take the carrier path. Store the credentials in an n8n credential or environment variable rather than typing them into each node, so rotating a password means changing one value.
n8n can also be configured to use a proxy for its outbound traffic generally, through environment variables on the host or container. That is rarely what you want for a workflow server, because it pushes your own API calls to Slack, Google and your database through the line too. Keep the proxy on the nodes that need it.
Rotation as a workflow step
Every NeonProxies line has a rotation link. Calling it asks the modem to reconnect to the carrier and pick up a new address from the regional pool. In n8n that is just another HTTP Request node, placed before the step that needs a fresh address, followed by a Wait node of several seconds and then a request to an IP-check endpoint through the line to confirm the new exit IP. Branch on the result: if the address did not change or the check failed, wait longer or alert instead of continuing blind.
Keep rotation deliberate. A workflow that rotates before every single request looks like a pool and gains nothing, while one that rotates between batches, or once per scheduled run, gives each run a clean start and keeps logs readable. The carrier pool is finite, so seeing an address again later in the day is expected, not a fault.
Zapier: what the cloud allows
Zapier runs your Zaps on its own infrastructure, and its built-in steps such as Webhooks by Zapier do not offer a setting to route a request through your own proxy. You cannot make a Zapier action exit from a carrier line directly. What you can do is call things that run elsewhere. A Webhooks by Zapier GET to the line's rotation link rotates the IP as part of a Zap, which is useful when the actual work happens on a server that uses the line. For requests that must leave from the line, point the Zap at a small endpoint you host, such as a serverless function or an n8n webhook, which makes the call through the proxy and returns the result.
That relay pattern keeps Zapier doing what it does well, connecting apps and handling triggers, while the network-sensitive work runs on infrastructure you control.
Good workflows, sensible limits
Typical fits include checking a product page from a specific US metro on a schedule and posting changes to a channel, verifying that a landing page and its redirects work from a mobile path after each deploy, and enriching leads from public sources at a gentle rate. Build pacing into the workflow with Wait nodes or Zapier delays, respect each target site's terms and rate limits, and stop the run on 403, 429 or challenge pages instead of looping.
Setting up a Zapier and n8n proxy on NeonProxies
- Buy a line and copy its host, port, username, password and rotation link.
- In n8n, save the proxy URL as a credential or environment variable.
- Enable the proxy option only on HTTP Request nodes that need a carrier exit.
- Add a rotation step: call the rotation link, wait, then verify the exit IP.
- In Zapier, call the rotation link with a webhook step or relay requests through an endpoint you host.
- Add delays and stop conditions for 403, 429 and challenge responses.
Zapier and n8n proxy questions
Can Zapier send requests through my mobile proxy?
Not directly. Zapier's built-in steps run on its infrastructure without a custom proxy setting. Use a webhook step to trigger rotation, and relay proxied requests through a small endpoint you host.
Should n8n use the proxy for everything?
Usually not. Set it on the specific HTTP Request nodes that need a US carrier address, and let the rest of the workflow use the server's normal connection.
How long should a workflow wait after rotating?
Several seconds is typical while the modem reconnects. Confirm the new address with an IP check through the line before continuing rather than relying on a fixed delay alone.