Instagram · JSON Structure

Instagram Graph Api Paging Structure

Paging schema from Instagram Graph API

Type: object Properties: 3
InstagramMetaPhotosSocial MediaVideosContent Publishing

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

Properties

cursors next previous

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-paging-structure.json",
  "name": "Paging",
  "description": "Paging schema from Instagram Graph API",
  "type": "object",
  "properties": {
    "cursors": {
      "type": "object",
      "properties": {
        "before": {
          "type": "string",
          "example": "QVFIUjRtc2c5NEl0ajN3"
        },
        "after": {
          "type": "string",
          "example": "QVFIUmlKdXBzYWtyUml3"
        }
      }
    },
    "next": {
      "type": "string",
      "description": "URL to fetch next page."
    },
    "previous": {
      "type": "string",
      "description": "URL to fetch previous page."
    }
  }
}