Logo
Modash API Documentation

Media Comment Replies

GET {{baseUrl}}/v1/raw/ig/media-comment-replies?code=<string>&comment_id=<string>&after=<string>

Get comment replies

 

Body PARAM

Key Datatype Required Description 
code
string (Required) Instagram post shortcode (digits and letters after https://www.instagram.com/p/)
comment_id
string (Required)
after
string Use `end_cursor` from the last page to get the next page



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "child_comments": [ { "pk": "<string>", "user": { "pk": "<string>", "profile_pic_url": "<string>", "username": "<string>", "full_name": "<string>", "is_private": false, "is_verified": false }, "created_at": "<number>", "text": "<string>", "comment_like_count": "<number>", "child_comment_count": "<number>" }, { "pk": "<string>", "user": { "pk": "<string>", "profile_pic_url": "<string>", "username": "<string>", "full_name": "<string>", "is_private": false, "is_verified": false }, "created_at": "<number>", "text": "<string>", "comment_like_count": "<number>", "child_comment_count": "<number>" } ], "more_available": "<boolean>", "end_cursor": "<string>" }

Curl
curl -X GET 'https://api.modash.io/v1/raw/ig/media-comment-replies?code=<string>&comment_id=<string>&after=<string>?code=<string>&comment_id=<string>&after=<string>' -H 'Accept: application/json'

ENDPOINTS