ArgorantDocs

Keywords lookup

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

Autocomplete free-text keywords (technologies, descriptors, niche tags) with coverage counts. Compound source values are decomposed into individual components, so "buyout" resolves cleanly to "Buyout/LBO" and similar.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Query Parameters

q?string

Partial keyword text.

size?integer

Max suggestions (1–200, default 25).

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/keywords/suggest?q=buyout&size=25"
JSON
{  "suggestions": [    {      "value": "Buyout/LBO",      "count": 38211    },    {      "value": "Growth Equity",      "count": 21044    }  ]}