# Media Comments

Get media comments. Pagination is not sequential, pages are dynamic and may be returned in any order so keep track of the cursors to paginate accurately.

Endpoint: GET /raw/ig/media-comments
Security: accessToken

## Query parameters:

  - `code` (string, required)
    Instagram post shortcode (digits and letters after https://www.instagram.com/p/)
    Example: "DKsBCXrpQTr"

  - `after` (string)
    Use end_cursor from the last page to get the next page

## Response 200 fields (application/json):

  - `status` (string, required)

  - `comments_disabled` (boolean, required)

  - `comments` (array, required)

  - `comments.pk` (string, required)

  - `comments.user` (object, required)

  - `comments.user.pk` (string, required)

  - `comments.user.is_verified` (boolean)

  - `comments.user.profile_pic_url` (string)

  - `comments.user.username` (string, required)

  - `comments.user.full_name` (string)

  - `comments.user.is_private` (boolean)

  - `comments.created_at` (number, required)

  - `comments.text` (string, required)

  - `comments.comment_like_count` (number, required)

  - `comments.child_comment_count` (number, required)

  - `comment_count` (number, required)

  - `more_available` (boolean, required)

  - `end_cursor` (string, required)


