Page through an Instagram account's posts by username — captions, like and comme
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
606 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://instagram.use.x402atlas.com/posts/:username
| Category | Image and media |
|---|---|
| Provider host | instagram.use.x402atlas.com |
| Networks | eip155:137, eip155:42161, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 606 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"username": "nasa"
},
"queryParams": {
"cursor": ""
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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 \u2014 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"
}