Instagram User reels API
List a profile’s reels by handle with cursor pagination: caption, plays, likes and comments.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"found": true,
"data": {
"nextCursor": "QVFEX2Z",
"reels": [
{
"id": "3641924023820356866",
"shortcode": "DKKtpqaxg0C",
"caption": "A flyby of the Pillars of Creation 🌌",
"views": 2410000,
"likes": 184000,
"comments": 1920,
"createdUtc": 1748371310,
"username": "nasa",
"verified": true,
"durationSeconds": 30.4
}
]
}
}interface InstagramUserReelsResponse {
data: {
nextCursor: string | null;
reels: {
avatarUrl?: string;
caption: string;
comments: number;
createdUtc: number;
displayName?: string;
durationSeconds: number;
id: string;
likes: number;
media?: {
height?: number;
type: string;
url: string;
videoUrl?: string;
width?: number;
}[];
shortcode: string;
userId?: string;
username: string;
verified: boolean;
views: number;
}[];
} | null;
found: boolean;
reason?: "not_found";
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-20 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/instagram.user_reels \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"handle":"nasa"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| cursor | string | Pagination cursor (max_id) from a previous response's nextCursor. |
| handle | string | "nasa"Instagram handle. |
| userId | string | Instagram user id (faster than handle when known). |
| Response | ||
| found | boolean | true |
| data | object | |
| data.nextCursor | string | "QVFEX2Z" |
| data.reels | array | |
| data.reels[].id | string | "3641924023820356866" |
| data.reels[].shortcode | string | "DKKtpqaxg0C" |
| data.reels[].caption | string | "A flyby of the Pillars of Creation 🌌" |
| data.reels[].views | number | 2410000 |
| data.reels[].likes | number | 184000 |
| data.reels[].comments | number | 1920 |
| data.reels[].createdUtc | number | 1748371310 |
| data.reels[].username | string | "nasa" |
| data.reels[].verified | boolean | true |
| data.reels[].durationSeconds | number | 30.4 |
| Price | ||
| Price per request | USD | $0.0008 |
| Price /1k req | USD | $0.80 |
FAQ
About the Instagram User reels API
The AnyAPI Instagram User reels API returns Instagram user reels data as normalized JSON from one POST call to /v1/run/instagram.user_reels. List a profile’s reels by handle with cursor pagination: caption, plays, likes and comments. AnyAPI routes each request across 6 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, 99.1% of Instagram user reels calls through AnyAPI succeeded, with a median response time of 2.3 seconds across 26,396 measured calls.