Instagram Post comments API
List the comments on a post or reel by URL with cursor pagination: text, author, verification and like count.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"found": true,
"data": {
"comments": [
{
"id": "18051843701642870",
"text": "Incredible shot ðŸ”",
"author": "spacefan",
"verified": false,
"likes": 42,
"createdAt": "2025-09-16T17:03:04.000Z"
}
]
}
}interface InstagramPostCommentsResponse {
data: {
comments: {
author: string;
avatarUrl?: string;
createdUtc: number;
id: string;
likes: number;
text: string;
verified: boolean;
}[];
nextCursor: string | null;
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/instagram.post_comments \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.instagram.com/p/C8aBcDeFgHi/"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.instagram.com/p/C8aBcDeFgHi/"Full Instagram post or reel URL. |
| cursor | string | Pagination cursor from a previous response's nextCursor. |
| Response | ||
| found | boolean | true |
| data | object | |
| data.comments | array | |
| data.comments[].id | string | "18051843701642870" |
| data.comments[].text | string | "Incredible shot ðŸ”" |
| data.comments[].author | string | "spacefan" |
| data.comments[].verified | boolean | false |
| data.comments[].likes | number | 42 |
| data.comments[].createdAt | string | "2025-09-16T17:03:04.000Z" |
| Price | ||
| Price per request | USD | $0.0008 |
| Price /1k req | USD | $0.80 |
FAQ
About the Instagram Post comments API
The AnyAPI Instagram Post comments API returns Instagram post comments data as normalized JSON from one POST call to /v1/run/instagram.post_comments. List the comments on a post or reel by URL with cursor pagination: text, author, verification and like count. AnyAPI routes each request across 4 sources and falls back automatically when one fails. It costs from $0.80 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Instagram post comments calls through AnyAPI succeeded, with a median response time of 4.7 seconds across 35,890 measured calls.