ArgorantDocs

Search people

gethttps://app.argorant.com/api/people/search
GET
/api/people/search

Search the contact database by industry, country, role, seniority, company, and email verification status. Returns paginated, ranked results with coverage counts. Emails are returned only on plans that include reveal; previews are masked otherwise.

Authorization

BearerAuth
AuthorizationBearer <token>

Your API key from app.argorant.com/profile, sent as Authorization: Bearer <key>.

In: header

Query Parameters

q?string

Free-text query across name, title, company, and email domain.

industries?string

Pipe-separated industry labels.

country?string

Comma-separated country names.

seniority?string

Comma-separated seniority bands (C-Level, VP, Director, Manager, Owner).

title?string

Job-title contains match.

company_name?string

Company name match.

company_domain?string

Company website domain.

verify_status?string

Comma-separated: valid, catch_all, risky, unknown, invalid.

keywords?string

Comma-separated free-text keywords matched across company name, description, title, and industry — widens niches that aren't a formal industry.

technologies?string

Pipe-separated technologies the company uses.

employee_range?string

Comma-separated size buckets: 1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10000+, unknown.

record_ids?string

Comma-separated Argorant record ids for exact source-record lookups.

has_email?boolean

Only contacts that have an email on file.

page?integer

1-based page number.

page_size?integer

Results per page (1–100).

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/people/search?q=head+of+growth&industries=SaaS%7CFintech&country=Germany%2CAustria&seniority=C-Level%2CVP&title=VP+of+Sales&company_name=Stripe&company_domain=stripe.com&verify_status=valid&keywords=solar%2Crenewable&technologies=Shopify%7CKlaviyo&employee_range=11-50%2C51-200&record_ids=rec_123%2Crec_456&has_email=true&page=1&page_size=25"
JSON
{  "results": [    {      "record_id": "p_8d4ba3d46cc885007c38e437",      "full_name": "Alex Schneider",      "title": "VP of Sales",      "company": "Evenito",      "company_domain": "evenito.com",      "country": "Switzerland",      "verification": "valid",      "email": "a••••@evenito.com"    }  ],  "total": 1843,  "page": 1,  "page_size": 25,  "total_pages": 74}