ArgorantDocs

Field values lookup

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

Generic autocomplete for any filterable field (title, seniority, department, company_name, city, state). Pass the field name and a prefix.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Query Parameters

field*string

Field to suggest values for (title, seniority, department, company_name, city, state).

q?string

Prefix to filter by.

limit?integer

Max suggestions (1–50, default 20).

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/people/suggest?field=title&q=head+of&limit=20"
JSON
{  "suggestions": [    {      "value": "Head of Sales",      "count": 412904    },    {      "value": "Head of Marketing",      "count": 388140    }  ]}