GETProfiles2 credits
Get followers
GET https://api.instagramapi.dev/v1/profile/followersPaginated list of followers (25–100 per page). Use `cursor` to continue. Large accounts can have millions, so page responsibly.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| handle | string | yes | An Instagram account. Accepts a username (`nike`), a numeric user id (`13460080`), or a full profile URL (`https://instagram.com/nike`). We resolve it automatically. |
| cursor | string | no | Pagination cursor returned as `next_cursor` in the previous response. Omit for the first page. |
Example request
curl "https://api.instagramapi.dev/v1/profile/followers?handle=nike" \
-H "Authorization: Bearer $INSTAGRAMAPI_KEY"Try it
Live request · uses 2 creditsExample response
{
"data": { /* A page of accounts that follow this account. */ },
"meta": {
"endpoint": "profile/followers",
"credits_charged": 2,
"credits_remaining": 4987,
"next_cursor": "QVFE...",
"ms": 412
}
}