Sign in
GETProfiles2 credits

Get following

GET https://api.instagramapi.dev/v1/profile/following

Paginated list of accounts the user follows (25–100 per page). Use `cursor` to continue.

Parameters

NameTypeRequiredDescription
handlestringyesAn Instagram account. Accepts a username (`nike`), a numeric user id (`13460080`), or a full profile URL (`https://instagram.com/nike`). We resolve it automatically.
cursorstringnoPagination cursor returned as `next_cursor` in the previous response. Omit for the first page.

Example request

curl "https://api.instagramapi.dev/v1/profile/following?handle=nike" \
  -H "Authorization: Bearer $INSTAGRAMAPI_KEY"

Try it

Live request · uses 2 credits

Example response

{
  "data": { /* A page of accounts this account follows. */ },
  "meta": {
    "endpoint": "profile/following",
    "credits_charged": 2,
    "credits_remaining": 4987,
    "next_cursor": "QVFE...",
    "ms": 412
  }
}