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.
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.
In your Zap, add Webhooks by Zapier → Custom Request and set one header on every request:
Authorization: Bearer <your API key>
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).
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", ... } ] }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, LinkedInMap the returned fields straight into HubSpot, Salesforce, Google Sheets, or any downstream Zapier app.
# 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>/downloadEvery 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.
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.
Free account, 100 credits included. Counts and searches are always free.