Argorant in n8n.
Two ways in: the n8n-nodes-argorant community node with a dedicated credential, or a plain HTTP Request node. Both work on n8n Cloud and self-hosted, including AI agent tools.
Create a free account, then mint a key at app.argorant.com/profile → API keys. Name it n8n so it can be revoked independently. It's shown once — copy it then.
# n8n UI: Settings → Community nodes → Install Package name: n8n-nodes-argorant # or on self-hosted: npm install n8n-nodes-argorant
Then create an Argorant API credential with your key. The node exposes operations for Count, Search (redacted preview), Reveal, Create Export, and Get Export.
Node: HTTP Request Auth: Generic → Header Auth Header: Authorization = Bearer <your API key> # Count (free) GET https://argorant.com/api/mcp/people/count?q=fintech CFOs&country=Germany # Preview (free, redacted) GET https://argorant.com/api/mcp/people/preview?q=...&limit=10 # Reveal (uses credits) GET https://argorant.com/api/mcp/people/reveal?q=...&limit=25
# HTTP Request — create the job
POST https://argorant.com/api/mcp/exports/create
Body: { "filters": { "q": "fintech CFOs", "country": "Germany" },
"limit": 500 }
→ { "type": "job", "job_id": "…", "status": "running" }
# Wait node (1–2 min) → HTTP Request — status
GET https://argorant.com/api/mcp/exports/{{ $json.job_id }}
→ { "status": "completed", "verified_rows": 463, "downloadable": true }
# IF node: status == "completed" → download
GET https://argorant.com/api/mcp/exports/{{ $json.job_id }}/downloadAttach the node's operations (or HTTP Request tools) to an AI Agent node. A useful pattern: give the agent Count and Search freely (both cost nothing) and gate Reveal/Export behind a confirmation step, so the agent explores markets for free and only spends credits on lists you approve. If your agent stack speaks MCP instead, use the hosted MCP server — see MCP overview.
All operations share the same params: q, 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.