Skip to main content
GET
/
v1
/
instagram
/
users
/
{username}
/
highlights
Get user story highlights
curl --request GET \
  --url https://api.konbiniapi.com/v1/instagram/users/{username}/highlights \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "@context": [
      "https://www.w3.org/ns/activitystreams#",
      "https://konbiniapi.com/ns/social#"
    ],
    "type": "OrderedCollectionPage",
    "partOf": "https://api.konbiniapi.com/v1/tiktok/users/khaby.lame/videos",
    "totalItems": 1309,
    "itemCount": 30,
    "orderedItems": [
      {
        "type": "OrderedCollection",
        "id": "https://www.tiktok.com/@khaby.lame/playlist/7200000000000000001",
        "internalId": "highlight:17890000000000001",
        "totalItems": 42,
        "name": "Best of 2025",
        "image": {
          "type": "Image",
          "url": "https://p16-sign.tiktokcdn-us.com/tos-avt/123456~c5_100x100.jpeg"
        }
      }
    ],
    "cursor": "0",
    "nextCursor": "1772217402000",
    "next": "https://api.konbiniapi.com/v1/tiktok/users/khaby.lame/videos?cursor=1772217402000&count=30"
  }
}

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)

Query Parameters

cursor
string

Pagination cursor

Response

Returns the user story highlights

data
object
required