← All integrations
No-code · via HTTP module
Veriastra in Make
Make's HTTP module calls Veriastra directly, and its output is parsed JSON you can map straight into the next module. Because the whole API is one shape — POST, JSON in, JSON out — a single module pattern covers every product.
01
Add HTTP → Make a request
Method POST, and turn on Parse response so the fields are mappable downstream.
02
URL and headers
Add two headers: Authorization with your key, and Content-Type.
URL: https://veriastra.com/api/verify-email
Authorization: Bearer ol_live_your_key_here
Content-Type: application/json03
Body
Set Body type to Raw, Content type JSON, and map the address from the previous module.
{ "email": "{{1.email}}" }04
Route on the answer
Add a Router and branch on deliverable. For phone work, call /api/dial-check and branch on decision (clear, caution, do-not-call) — branch on the code, not on the sentence.
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.
- Make retries a failed HTTP module by default. Send an `Idempotency-Key` header if you want the retry replayed from our side rather than charged again.