Unif API Docs

List replies to an Instagram comment

Return the replies to a specific comment on an Instagram post, identified by the post shortcode and comment ID, as a paginated list. Useful for following threaded conversations and analyzing audience discussion.

Pricing — $ · min $0.001

Billed per record at 1 credit ($0.001) each, with a 1-credit ($0.001) minimum per call.

GET
/instagram/posts/{shortcode}/comments/{commentId}/replies

Authorization

bearerAuth
AuthorizationBearer <token>

UnifAPI API key. Provider credentials are managed by UnifAPI.

In: header

Path Parameters

shortcode*string
Length1 <= length
commentId*string
Length1 <= length

Query Parameters

cursor?string

Header Parameters

Unifapi-Version?"2026-07-01"

Pin the API version an integration was built against (date-based, e.g. 2026-07-01). Omit to use the current version. Public URL paths stay stable and unversioned; breaking changes ship under a new dated version and are announced with Deprecation and Sunset response headers. The served version is echoed in every response's Unifapi-Version header. Policy: https://unifapi.com/versioning.md

Default"2026-07-01"

Value in

  • "2026-07-01"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/instagram/posts/string/comments/string/replies"
{  "request_id": "string",  "data": [    {      "id": "string",      "user": {        "id": "string",        "user_id": "string",        "username": "string",        "full_name": "string",        "is_verified": true,        "is_private": true,        "profile_pic_url": "string"      },      "text": "string",      "created_at": 0,      "like_count": 0,      "child_comment_count": 0,      "has_translation": true,      "has_liked": true,      "parent_comment_id": "string"    }  ],  "pagination": {    "has_more": true,    "next_cursor": "string"  },  "billing": {    "credits_charged": 0,    "records_charged": 0,    "balance_remaining": 0,    "truncated_due_to_balance": true  }}