Argorant
Argorant
Docs · Integrations · n8n

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.

1 · Get an API key

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

2a · Install the community node
# 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.

2b · Or use HTTP Request
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
3 · Verified exports in a workflow
# 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 }}/download
4 · As tools for n8n AI agents

Attach 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.

Available filters

All operations share the same 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 workflow 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