Instagram · JSON Structure

Instagram Graph Api Comment Structure

Comment schema from Instagram Graph API

Type: object Properties: 7
InstagramMetaPhotosSocial MediaVideosContent Publishing

Comment is a JSON Structure definition published by Instagram, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id text username timestamp like_count hidden parent_id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instagram/refs/heads/main/json-structure/instagram-graph-api-comment-structure.json",
  "name": "Comment",
  "description": "Comment schema from Instagram Graph API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "17858893269000001"
    },
    "text": {
      "type": "string",
      "example": "Amazing photo!"
    },
    "username": {
      "type": "string",
      "example": "fan_account"
    },
    "timestamp": {
      "type": "datetime",
      "example": "2026-04-17T14:30:00+0000"
    },
    "like_count": {
      "type": "int32",
      "example": 5
    },
    "hidden": {
      "type": "boolean",
      "example": false
    },
    "parent_id": {
      "type": "string",
      "description": "ID of the parent comment if this is a reply."
    }
  }
}