Skip to main content
GET
Comment Replies
💳 1 credit per request
Get replies to a specific Instagram comment. Pass the post or reel url and the parent comment_id (from the Comments endpoint), then use the cursor from each response to page through more replies.

Authorizations

X-API-Key
string
header
required

API key for authentication. Format: sk_live_xxxxxxxxxxxxx

Get your API key from the Dashboard.

Query Parameters

url
string
required

The Instagram post or reel URL

Example:

"https://www.instagram.com/reel/C8rKmYvsrck"

comment_id
string
required

The parent comment ID from the Comments endpoint

Example:

"18038110327814211"

cursor
string

Cursor for pagination. Get 'cursor' from the previous response to fetch more replies.

Example:

"QVFDc29..."

Response

Successful response

Key Response Fields:

  • data.comments: Replies keyed by index (0, 1, 2, ...)
  • data.comments[0].id: Unique reply ID
  • data.comments[0].text: Reply text content
  • data.comments[0].created_at: ISO timestamp of when the reply was posted
  • data.comments[0].parent_comment_id: ID of the parent comment these replies belong to
  • data.comments[0].child_comment_count: Number of nested replies under this reply
  • data.comments[0].user.username: Replier's Instagram username
  • data.comments[0].user.profile_pic_url: Replier's profile picture URL
  • data.comments[0].user.is_verified: Whether the replier is a verified account
  • data.cursor: Pagination cursor — pass to the cursor parameter to fetch the next page (null when there are no more)
  • data.has_more: Whether more replies are available