Skip to main content
GET
/
v1
/
instagram
/
posts
/
{postId}
/
comments
Get post comments
curl --request GET \
  --url https://api.konbiniapi.com/v1/instagram/posts/{postId}/comments \
  --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": "Note",
        "id": "https://www.tiktok.com/@khaby.lame/video/7611615657754381599/comment/7611646895321105170",
        "internalId": "17890000000000001",
        "content": "This man hasn't been in my fyp for so long",
        "likeCount": 93210,
        "replyCount": 12,
        "attributedTo": {
          "type": "Person",
          "id": "https://www.tiktok.com/@khaby.lame",
          "url": "https://www.tiktok.com/@khaby.lame",
          "userId": "779085683",
          "preferredUsername": "khaby00",
          "name": "Khabane lame",
          "icon": {
            "type": "Image",
            "url": "https://p16-sign.tiktokcdn-us.com/tos-avt/123456~c5_100x100.jpeg"
          },
          "role": "collaborator"
        },
        "inReplyTo": "https://www.instagram.com/p/CybWViruta1/",
        "published": "2026-02-27T20:37:38.000Z"
      }
    ],
    "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

postId
string
required

Post shortcode (from instagram.com/p/{shortcode}/)

Query Parameters

count
integer
default:15

Page size (fixed at 15 by the platform)

Required range: 15 <= x <= 15
cursor
string

Pagination cursor

Response

Returns the post comments

data
object
required