Argorant
Argorant
Docs · Integrations · Make

Argorant in Make.

Make's HTTP → Make a request module drives Argorant directly: structured JSON in, mappable fields out. A native Make app is in preparation; everything below keeps working unchanged.

1 · Get an API key

Create an account, then mint a key at app.argorant.com/profile → API keys. Name it makeso it can be revoked independently. It's shown once — copy it then.

2 · Configure the HTTP module
Module:   HTTP → Make a request
Headers:  Authorization: Bearer <your API key>
Parse response: Yes  (so fields are mappable)
3 · Count a segment (free)
Method:  GET
URL:     https://argorant.com/api/mcp/people/count
Query:   q = logistics ops leaders
         country = Netherlands

→ { "count": 8312, ... }
4 · Search & reveal
# Free, redacted preview
GET https://argorant.com/api/mcp/people/preview?q=...&limit=10

# Full details — uses credits
GET https://argorant.com/api/mcp/people/reveal?q=...&limit=25

Add an Iterator on the results array, then route each contact to HubSpot, Salesforce, Airtable, Google Sheets, or any Make app.

5 · Verified exports with polling
# Module 1 — create the job
POST https://argorant.com/api/mcp/exports/create
Body (JSON): { "filters": { "q": "fintech CFOs",
                            "country": "Germany" },
               "limit": 500 }
→ { "type": "job", "job_id": "…", "status": "running" }

# Module 2 — Tools → Sleep (60–120 s)

# Module 3 — check status
GET https://argorant.com/api/mcp/exports/{{job_id}}
→ { "status": "completed", "verified_rows": 463,
    "downloadable": true }

# Optional: Repeater + Filter (status = completed) for longer jobs

# Module 4 — download the CSV
GET https://argorant.com/api/mcp/exports/{{job_id}}/download

Rows are re-verified at export time and include a verification status column — branch on it with a Router if you only want deliverable emails downstream.

Available filters

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

Build your first scenario now.

Build a personalized 25-lead sample. 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