Sign in
GETProfiles1 credit

Get profile

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

Returns the public profile: bio, full name, follower/following counts, post count, profile picture, verified/business flags, and external links.

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.

Example request

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

Try it

Live request · uses 1 credit

Example response

{
  "data": { /* Full public profile for an account. */ },
  "meta": {
    "endpoint": "profile",
    "credits_charged": 1,
    "credits_remaining": 4987,
    "next_cursor": null,
    "ms": 412
  }
}