{
  "x402Version": 2,
  "id": 2474,
  "slug": "2474",
  "resource": "https://instagram.use.x402atlas.com/posts/:username",
  "description": "Page through an Instagram account's posts by username — captions, like and comment counts, media type, video duration, image and thumbnail URLs, post permalinks, tagged users and location, plus a cursor for the next page. Instagram posts feed, reels listing, creator content history, social post data. No API key.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x28410EaC7393dba041cd5a92eEfe7a8E834310bb",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x28410EaC7393dba041cd5a92eEfe7a8E834310bb",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x28410EaC7393dba041cd5a92eEfe7a8E834310bb",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "category": "marketing",
      "info": {
        "input": {
          "method": "GET",
          "pathParams": {
            "username": "nasa"
          },
          "queryParams": {
            "cursor": ""
          },
          "type": "http"
        },
        "output": {
          "example": {
            "next_cursor": "QVFEeWJzNWJXVUZ6M0xkVWhoOWc3RHhwLW5rTk1pT2h5",
            "next_cursor_url": "https://instagram.use.x402atlas.com/posts/nasa?cursor=QVFEeWJzNWJXVUZ6M0xkVWhoOWc3RHhwLW5rTk1pT2h5",
            "posts": [
              {
                "accessibility_caption": "Photo by NASA of the Sun's corona against a black sky.",
                "caption": "A new view of the Sun's corona, captured during totality.",
                "carousel": [],
                "comments": 4102,
                "comments_disabled": false,
                "dimensions": {
                  "height": 1350,
                  "width": 1080
                },
                "display_url": "https://scontent.cdninstagram.com/v/t51.29350-15/nasa_post_1.jpg",
                "has_audio": false,
                "id": "3502108108334577896",
                "is_paid_partnership": false,
                "is_video": false,
                "like_and_view_counts_disabled": false,
                "likes": 812345,
                "location": {
                  "id": "212999109",
                  "name": "Kennedy Space Center",
                  "slug": "kennedy-space-center"
                },
                "owner": {
                  "id": "528817151",
                  "username": "nasa"
                },
                "product_type": "feed",
                "shortcode": "DBaVQ2Rx3Ho",
                "tagged_users": [
                  "nasahubble"
                ],
                "thumbnail_url": "https://scontent.cdninstagram.com/v/t51.29350-15/nasa_post_1_thumb.jpg",
                "url": "https://www.instagram.com/p/DBaVQ2Rx3Ho/"
              },
              {
                "accessibility_caption": "Video by NASA of astronauts in training suits.",
                "caption": "Artemis II crew training, in 60 seconds.",
                "carousel": [],
                "comments": 8891,
                "comments_disabled": false,
                "dimensions": {
                  "height": 1920,
                  "width": 1080
                },
                "display_url": "https://scontent.cdninstagram.com/v/t51.29350-15/nasa_post_2.jpg",
                "has_audio": true,
                "id": "3498765432109876543",
                "is_paid_partnership": false,
                "is_video": true,
                "like_and_view_counts_disabled": false,
                "likes": 1204553,
                "owner": {
                  "id": "528817151",
                  "username": "nasa"
                },
                "product_type": "clips",
                "shortcode": "DBOxK1LvQ8m",
                "tagged_users": [],
                "thumbnail_url": "https://scontent.cdninstagram.com/v/t51.29350-15/nasa_post_2_thumb.jpg",
                "title": "Artemis II crew training",
                "url": "https://www.instagram.com/p/DBOxK1LvQ8m/",
                "video_duration": 58.6
              }
            ],
            "username": "nasa"
          },
          "type": "json"
        }
      },
      "routeTemplate": "/posts/:username",
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "pathParams": {
                "properties": {
                  "username": {
                    "description": "Instagram handle as it appears in the profile URL, e.g. `nasa` for instagram.com/nasa. Case-insensitive, no leading @.",
                    "maxLength": 30,
                    "pattern": "^[A-Za-z0-9._]+$",
                    "type": "string"
                  }
                },
                "required": [
                  "username"
                ],
                "type": "object"
              },
              "queryParams": {
                "properties": {
                  "cursor": {
                    "description": "Opaque pagination token returned as `next_cursor` by a previous call. Omit or leave empty to get the first page.",
                    "maxLength": 1024,
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "pathParams"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "next_cursor": {
                    "description": "Opaque token for the next page of posts; feed it back as `?cursor=` on /instagram/posts/{username}. Empty when there is no further page.",
                    "type": "string"
                  },
                  "next_cursor_url": {
                    "description": "Ready-made URL for the next page — GET it as-is (it is a paid $0.02 call like any other). Equivalent to feeding `next_cursor` back yourself. Empty when there is no further page.",
                    "type": "string"
                  },
                  "note": {
                    "description": "Present only when the page came back empty (unknown, private or empty account, or an expired cursor). The paid lookup still ran.",
                    "type": "string"
                  },
                  "posts": {
                    "description": "One page of the account's posts, newest first; empty when nothing public was found",
                    "items": {
                      "properties": {
                        "accessibility_caption": {
                          "description": "Instagram's auto-generated image description",
                          "type": "string"
                        },
                        "caption": {
                          "description": "The post's written caption; falls back to accessibility_caption when the post has no written one",
                          "type": "string"
                        },
                        "carousel": {
                          "description": "Children of a multi-media post; empty for single-media posts",
                          "items": {
                            "properties": {
                              "dimensions": {
                                "properties": {
                                  "height": {
                                    "type": "integer"
                                  },
                                  "width": {
                                    "type": "integer"
                                  }
                                },
                                "type": "object"
                              },
                              "display_url": {
                                "type": "string"
                              },
                              "id": {
                                "type": "string"
                              },
                              "is_video": {
                                "type": "boolean"
                              },
                              "shortcode": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "comments": {
                          "type": "integer"
                        },
                        "comments_disabled": {
                          "type": "boolean"
                        },
                        "dimensions": {
                          "properties": {
                            "height": {
                              "type": "integer"
                            },
                            "width": {
                              "type": "integer"
                            }
                          },
                          "type": "object"
                        },
                        "display_url": {
                          "description": "Full-size image (or video cover) URL",
                          "type": "string"
                        },
                        "has_audio": {
                          "type": "boolean"
                        },
                        "id": {
                          "type": "string"
                        },
                        "is_paid_partnership": {
                          "type": "boolean"
                        },
                        "is_video": {
                          "type": "boolean"
                        },
                        "like_and_view_counts_disabled": {
                          "type": "boolean"
                        },
                        "likes": {
                          "type": "integer"
                        },
                        "location": {
                          "description": "Tagged place; absent when the post has none",
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "slug": {
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "owner": {
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "username": {
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "product_type": {
                          "description": "Post kind as Instagram labels it, e.g. feed or clips (reels)",
                          "type": "string"
                        },
                        "shortcode": {
                          "description": "The post's short id, the last segment of its permalink",
                          "type": "string"
                        },
                        "tagged_users": {
                          "description": "Handles tagged in the post",
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "thumbnail_url": {
                          "description": "Smaller preview of the same media as display_url — use it for grids and lists",
                          "type": "string"
                        },
                        "title": {
                          "description": "Post title; only reels and clips carry one, absent on ordinary feed posts",
                          "type": "string"
                        },
                        "url": {
                          "description": "Public post permalink, derived from the shortcode",
                          "type": "string"
                        },
                        "video_duration": {
                          "description": "Video length in seconds. Absent on images, and also absent when the post is a video whose duration is not reported — branch on is_video, not on this field",
                          "type": "number"
                        }
                      },
                      "required": [
                        "is_video",
                        "has_audio",
                        "dimensions",
                        "likes",
                        "comments",
                        "comments_disabled",
                        "like_and_view_counts_disabled",
                        "is_paid_partnership",
                        "tagged_users",
                        "carousel"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "username": {
                    "description": "The normalized handle that was looked up",
                    "type": "string"
                  }
                },
                "required": [
                  "username",
                  "posts",
                  "next_cursor",
                  "next_cursor_url"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      },
      "tags": [
        "instagram",
        "social-media",
        "influencer",
        "creator",
        "profile",
        "posts",
        "followers"
      ]
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "instagram.use.x402atlas.com",
  "lastUpdated": "2026-09-15T06:32:08.45Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-15T06:32:08.316Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "instagram.use.x402atlas.com",
    "manifest_name": "instagram.use.x402atlas.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}