Skip to main content
GET
/
v1
/
instagram
/
users
/
{username}
Get user profile
curl --request GET \
  --url https://api.konbiniapi.com/v1/instagram/users/{username} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "@context": [
      "https://www.w3.org/ns/activitystreams#",
      "https://konbiniapi.com/ns/social#"
    ],
    "type": "Person",
    "id": "https://www.instagram.com/khaby00/",
    "url": "https://www.instagram.com/khaby00/",
    "userId": "779085683",
    "name": "Khabane Lame",
    "preferredUsername": "khaby00",
    "isPrivate": false,
    "isVerified": true,
    "isPaidVerified": false,
    "hasShortVideos": true,
    "hasChannel": false,
    "hasMicroblog": true,
    "followerCount": 77560380,
    "followingCount": 1004,
    "mediaCount": 626,
    "highlightCount": 10,
    "internalId": "17841400410502173",
    "summary": "Just a guy who reacts",
    "attachment": [
      {
        "type": "Link",
        "href": "https://handsdowncoffee.com"
      }
    ],
    "category": "Gaming video creator",
    "pronouns": [
      "he/him"
    ],
    "icon": {
      "type": "Image",
      "url": "https://p16-sign.tiktokcdn-us.com/tos-avt/123456~c5_100x100.jpeg"
    },
    "image": [
      {
        "type": "Image",
        "url": "https://p16-sign.tiktokcdn-us.com/tos-avt/123456~c5_100x100.jpeg"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Send your API key in the Authorization header as a Bearer token. Example: Authorization: Bearer <your-api-key>

Path Parameters

username
string
required

Instagram username (with or without @ symbol)

Response

Returns the Instagram user profile

data
object
required