Media Comments
GET {{baseUrl}}/v1/raw/ig/media-comments?code=<string>&after=<string>
Get media comments
Body
PARAM
Key | Datatype | Required | Description |
code
|
string | (Required) Instagram post shortcode (digits and letters after https://www.instagram.com/p/) | |
after
|
string | Use `end_cursor` from the last page to get the next page |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"comments_disabled": "<boolean>",
"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>"
}
],
"comment_count": "<number>",
"more_available": "<boolean>",
"end_cursor": "<string>"
} |
ENDPOINTS