← All integrations
No-code · via HTTP Request node
Veriastra in n8n
n8n's HTTP Request node calls Veriastra with no custom node needed. Because n8n is usually self-hosted, the key stays in your own credential store and the request leaves from your own network.
01
Add an HTTP Request node
Method POST, URL as below, Send Body on, Body Content Type JSON.
https://veriastra.com/api/dial-check02
Store the key as a credential
Authentication → Generic Credential Type → Header Auth. Name Authorization, value Bearer ol_live_…. Kept out of the workflow JSON, so exporting the workflow does not export your key.
03
Body parameters
Add one parameter phone, value from the incoming item.
={{ $json.phone }}04
Branch with an IF node
Condition on {{ $json.decision }} equals do-not-call to split the list before it reaches a dialer.
Before you rely on it
- Your API key goes in the Authorization header as `Bearer ol_live_…`. Create one in the dashboard under API Keys. Never put it in a URL — anything in a URL ends up in logs.
- n8n's Batch node plus our per-key rate limit work well together: 10 requests a second on Starter, 25 on Growth, 50 above.