GET/v1/instagram/user/reels
Get user reels
Retrieve reels with play counts and engagement data.
Parameters
| Name | Type | Description |
|---|---|---|
| username_or_urlrequired | string | — e.g. instagram |
| cursor | string | Pagination cursor from previous response |
Request
Shell
curl -G "https://social-api.airaa.xyz/v1/instagram/user/reels" \ -H "X-API-KEY: YOUR_KEY" \ -d "username_or_url=instagram" \ -d "cursor=cursor"
Try it
Live requestRuns against the real API
X-API-KEY
username_or_urlrequired
cursor
Response example
200 OKapplication/json
{
"reels": [
{
"node": {
"media": {
"pk": "3875317901306048269",
"id": "3875317901306048269_25025320",
"code": "DXH5RlTDy8N",
"media_type": 2,
"play_count": 27827344,
"like_count": 34186,
"comment_count": 1671,
"product_type": "clips",
"image_versions2": {
"candidates": [
{
"url": "https://scontent.cdninstagram.com/v/...",
"width": 1215,
"height": 2160
}
]
},
"user": {
"pk": "25025320",
"id": "25025320"
}
}
}
}
],
"pagination_token": "QVFDUktROXg2Rk5oTkFtd2MtWTAxeE..."
}Response codes
200Reels list
400Missing or invalid query parameter
401Missing or invalid `X-API-KEY` header
429Request quota exceeded — contact light@airaa.xyz to upgrade your plan
500Server misconfiguration — API key environment variable not set
502Airaa service temporarily unavailable — please try again
504Request timed out — please try again
All error responses follow the shape
{ "error": "message" }