GETSearch1 credit
Search users
GET https://api.instagramapi.dev/v1/search/usersReturns accounts matching a search query, ranked by Instagram relevance.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| q | string | yes | Search text. |
Example request
curl "https://api.instagramapi.dev/v1/search/users?q=coffee" \
-H "Authorization: Bearer $INSTAGRAMAPI_KEY"Try it
Live request · uses 1 creditExample response
{
"data": { /* Search accounts by keyword. */ },
"meta": {
"endpoint": "search/users",
"credits_charged": 1,
"credits_remaining": 4987,
"next_cursor": null,
"ms": 412
}
}