Argorant
Argorant
Docs · Integrations · Zapier

Argorant in Zapier.

Drive every Argorant operation from Zapier's built-in Webhooks by Zapier step — no code, one API key. A native Argorant app listing is in the works; everything below keeps working unchanged when it lands.

1 · Get an API key

Create a free account, then mint a key at app.argorant.com/profile → API keys. Name it zapier so you can revoke it independently later. Copy it once — it's shown a single time.

2 · Add a Webhooks step

In your Zap, add Webhooks by Zapier → Custom Request and set one header on every request:

Authorization: Bearer <your API key>
3 · Count a segment (free)
Method:  GET
URL:     https://argorant.com/api/mcp/people/count
Params:  q=fintech CFOs
         country=Germany

→ { "count": 12480, ... }

Counts never consume credits — schedule them freely (e.g. a weekly Zap that posts segment sizes to Slack).

4 · Preview matches (free, redacted)
Method:  GET
URL:     https://argorant.com/api/mcp/people/preview
Params:  q=fintech CFOs
         country=Germany
         limit=10

→ { "results": [ { "name": "…", "title": "CFO", "company": "…",
      "email": "redacted", ... } ] }
5 · Reveal contacts (uses credits)
Method:  GET
URL:     https://argorant.com/api/mcp/people/reveal
Params:  q=fintech CFOs
         country=Germany
         limit=25

→ full contact details incl. verified email, phone, LinkedIn

Map the returned fields straight into HubSpot, Salesforce, Google Sheets, or any downstream Zapier app.

6 · Verified exports (async)
# Create the export job
Method:  POST
URL:     https://argorant.com/api/mcp/exports/create
Data:    { "filters": { "q": "fintech CFOs", "country": "Germany" },
           "limit": 500 }

→ { "type": "job", "job_id": "…", "status": "running", ... }

# Poll status (add a Delay step of 1–3 min before this)
Method:  GET
URL:     https://argorant.com/api/mcp/exports/<job_id>

→ { "status": "completed", "total_rows": 500, "verified_rows": 463,
    "downloadable": true }

# Download the CSV
Method:  GET
URL:     https://argorant.com/api/mcp/exports/<job_id>/download

Every export row is re-verified at run time and carries a verification status column. For most Zaps, a single Delay step of 2 minutes before the status check is enough.

Available filters

All endpoints accept the same query params: q (free text), title, seniority, departments, industry, country, state, city, company_name, company_domain, has_email, has_phone, has_linkedin, verify_status, limit. Full details in the API reference.

Build your first Zap now.

Free account, 100 credits included. Counts and searches are always free.

Loved by revenue teams
We run cold outbound for a dozen clients. Argorant replaced two tools and the bounce complaints just stopped.
Founder of a bootstrapped outbound agency · Lisbon, Portugal