/v1/instagram/profileGet a public profile
Returns the public profile for a username: identity, follower and post counts, verification and account type, category and avatar. Private accounts return their public header only. Unknown usernames return 404 NOT_FOUND.
| profile* | object |
| id* | string |
| username* | string |
| full_name* | string |
| biography* | string | null |
| external_url* | string · uri | null |
| followers* | integer |
| following* | integer |
| posts* | integer |
| is_verified* | boolean |
| is_private* | boolean |
| is_business* | boolean |
| category* | string | null |
| profile_pic_url* | string · uri |
| highlight_reels* | integer |
curl "https://api.endpointry.com/v1/instagram/profile" \
-H "Authorization: Bearer sk_live_..."{
"meta": {
"request_id": "req_7729f93d3facf68ff83e5c50",
"as_of": "2026-08-01T12:00:00.000Z"
},
"data": {
"profile": {
"id": "25025320",
"username": "instagram",
"full_name": "Instagram",
"biography": "Discover what's new on Instagram 🔎✨",
"external_url": "https://help.instagram.com/",
"followers": 685834161,
"following": 267,
"posts": 8542,
"is_verified": true,
"is_private": false,
"is_business": false,
"category": null,
"profile_pic_url": "https://scontent.cdninstagram.com/v/t51.2885-19/…jpg",
"highlight_reels": 10
}
}
}