Instagram API
  1. comments
Instagram API
  • geographies
    • Get recent media from a custom geo-id.
      GET
  • locations
    • Search for a location by geographic coordinate.
      GET
    • Get information about a location.
      GET
    • Get a list of recent media objects from a given location.
      GET
  • media
    • Get a list of currently popular media.
      GET
    • Search for media in a given area.
      GET
    • Get information about a media object.
      GET
    • Get information about a media object.
      GET
  • comments
    • Get a list of recent comments on a media object.
      GET
    • Create a comment on a media object.
      POST
    • Remove a comment.
      DELETE
  • likes
    • Remove a like on this media by the current user.
      DELETE
    • Get a list of users who have liked this media.
      GET
    • Set a like on this media by the current user.
      POST
  • tags
    • Search for tags by name.
      GET
    • Get information about a tag object.
      GET
    • Get a list of recently tagged media.
      GET
  • users
    • Search for a user by name.
      GET
    • See the authenticated user's feed.
      GET
    • See the list of media liked by the authenticated user.
      GET
    • Get basic information about a user.
      GET
    • Get the most recent media published by a user.
      GET
  • relationships
    • List the users who have requested this user's permission to follow.
    • Get the list of users this user is followed by.
    • Get the list of users this user follows.
    • Get information about a relationship to another user.
    • Modify the relationship between the current user and the target user.
  1. comments

Get a list of recent comments on a media object.

GET
/media/{media-id}/comments
comments
Get a list of recent comments on a media object.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.instagram.com/v1/media//comments'
Response Response Example
{
  "data": [
    {
      "created_time": "string",
      "from": {
        "full_name": "string",
        "id": "string",
        "profile_picture": "string",
        "username": "string"
      },
      "id": "string",
      "text": "string"
    }
  ],
  "meta": {
    "code": 0
  }
}

Request

Path Params
media-id
string 
required
The ID of the media resource.

Responses

🟢200List of comments of the media resource.
application/json
Body
data
array[object (CommentEntry) {4}] 
optional
Collection of comments
created_time
string 
optional
Comment creation UNIX timestamp
from
object (UserShortInfo) 
optional
id
string 
optional
ID of this comment
text
string 
optional
Text of the comment
meta
object (MetaData) 
optional
code
integer <int32>
optional
HTTP result code
Modified at 2023-08-15 03:55:31
Previous
Get information about a media object.
Next
Create a comment on a media object.
Built with