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/",
"entityId": "779085683",
"name": "Khabane Lame",
"preferredUsername": "khaby00",
"isPrivate": false,
"isVerified": true,
"isPaidVerified": false,
"isBusiness": false,
"isProfessional": true,
"hasVideos": true,
"hasChannel": false,
"hasMicroblog": true,
"followerCount": 77560380,
"followingCount": 1004,
"mediaCount": 626,
"videoCount": 120,
"highlightCount": 10,
"summary": "Just a guy who reacts",
"attachment": [
{
"type": "Link",
"href": "https://linktr.ee/khabylame",
"rel": "preferred"
}
],
"category": "Public figure",
"pronouns": [
"he/him"
],
"icon": {
"type": "Image",
"url": "https://scontent.cdninstagram.com/v/t51.2885-19/avatar.jpg"
},
"image": [
{
"type": "Image",
"url": "https://scontent.cdninstagram.com/v/t51.2885-19/avatar.jpg"
}
]
}
}Users
Get user profile
Returns profile information for an Instagram user including bio, follower counts, profile picture, and account metadata. Look up any public Instagram account by username.
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/",
"entityId": "779085683",
"name": "Khabane Lame",
"preferredUsername": "khaby00",
"isPrivate": false,
"isVerified": true,
"isPaidVerified": false,
"isBusiness": false,
"isProfessional": true,
"hasVideos": true,
"hasChannel": false,
"hasMicroblog": true,
"followerCount": 77560380,
"followingCount": 1004,
"mediaCount": 626,
"videoCount": 120,
"highlightCount": 10,
"summary": "Just a guy who reacts",
"attachment": [
{
"type": "Link",
"href": "https://linktr.ee/khabylame",
"rel": "preferred"
}
],
"category": "Public figure",
"pronouns": [
"he/him"
],
"icon": {
"type": "Image",
"url": "https://scontent.cdninstagram.com/v/t51.2885-19/avatar.jpg"
},
"image": [
{
"type": "Image",
"url": "https://scontent.cdninstagram.com/v/t51.2885-19/avatar.jpg"
}
]
}
}Authorizations
Send your API key in the Authorization header as a Bearer token.
Example: Authorization: Bearer <your-api-key>
Path Parameters
Instagram username (with or without @ symbol)
Example:
"khaby00"
Response
Returns the Instagram user profile
Show child attributes
Show child attributes
⌘I