Argorant
Argorant
Docs · Integrations · Clay

Argorant → Clay.

Add Argorant to any Clay table with the built-in HTTP API enrichment column — find verified work emails, verify addresses you have, and reveal full contacts, row by row.

1 · Create an API key

Mint a key at app.argorant.com/profile → API keys (ag_live_…). Every template below authenticates with one header:

Authorization: Bearer ag_live_xxxxxxxxxxxxxxxx
2 · Add an HTTP API column

In your Clay table: Add enrichment → HTTP API. Pick a template below, set the method, URL, header, and body, and map your table columns (the /columnName tokens) into the body fields. Each row returns JSON that downstream columns reference directly.

Template — Find verified email (1 credit per hit)

Name + company domain in, verified work email out. Best hit rate with a clean domain column.

Method:  POST
URL:     https://argorant.com/api/mcp/email/find
Headers: Authorization: Bearer <your key>
         Content-Type: application/json
Body:    {
  "first_name": "/First Name",
  "last_name":  "/Last Name",
  "domain":     "/Company Domain"
}

→ { "ok": true, "found": true, "email": "jane.doe@acme.com",
    "status": "valid", "confidence": 96 }

Waterfall tip: branch on status — keep valid rows, let the waterfall continue otherwise.

Template — Verify an email you already have
Method:  POST
URL:     https://argorant.com/api/mcp/email/verify
Headers: Authorization: Bearer <your key>
         Content-Type: application/json
Body:    { "email": "/Email" }

→ { "ok": true, "email": "jane.doe@acme.com", "status": "valid" }
Template — Reveal full contact (1 credit per row)

Returns the complete record — verified email, phone, title, company, location, LinkedIn.

Method:  GET
URL:     https://argorant.com/api/mcp/people/reveal
           ?q=/Full Name /Company Name&limit=1
Headers: Authorization: Bearer <your key>

→ { "contacts": [ { "first_name": "Jane", "last_name": "Doe",
      "title": "CFO", "company_name": "Acme", "email": "jane.doe@acme.com",
      "phone": "+1 …", "linkedin_url": "…", "verify_status": "valid" } ] }
Template — Free segment count (sizing before you spend)
Method:  GET
URL:     https://argorant.com/api/mcp/people/count
           ?industry=/Industry&country=/Country&title=/Title
Headers: Authorization: Bearer <your key>

→ { "ok": true, "count": 18234 }
Importing whole lists instead

For a full segment rather than per-row enrichment, create a verified export (POST /api/mcp/exports/create), download the CSV when status = done, and import it as a new Clay table. See the API reference for export endpoints.

Verified data in every Clay row.

Free account, 100 credits included. Counts and previews never consume credits.

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