GETProfiles2 credits
Get highlights
GET https://api.instagramapi.dev/v1/profile/highlightsReturns the saved story highlights pinned to a profile.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| handle | string | yes | An 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/highlights?handle=nike" \
-H "Authorization: Bearer $INSTAGRAMAPI_KEY"Try it
Live request · uses 2 creditsExample response
{
"data": { /* Story highlight reels for an account. */ },
"meta": {
"endpoint": "profile/highlights",
"credits_charged": 2,
"credits_remaining": 4987,
"next_cursor": null,
"ms": 412
}
}