Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Retrieve Instagram Reels for a user API Playground
Returns a feed of Instagram Reels for the specified user ID. Supports pagination via `max_id`.
GETapiKey8 credits/requestinstagram.reelsResponseDocInstagram
Endpoint details
Returns a feed of Instagram Reels for the specified user ID. Supports pagination via `max_id`.
- Method
- GET
- Path
- /instagram/reels/{id}
- Authentication
- apiKey
- Credit cost
- 8 credits/request
- Platform
- Parameters
- 3 documented fields
Request parameters
id:pathmax_id:queryx-api-key:header
Response schema fields
codedatadata.itemsdata.items[].mediadata.items[].media.captiondata.items[].media.codedata.items[].media.comment_countdata.items[].media.display_uridata.items[].media.iddata.items[].media.image_versions2data.items[].media.image_versions2.candidatesdata.items[].media.image_versions2.candidates[].height
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"media": {
"id": "3679713463091712273_1067259270",
"code": "DMQ9-YSzdER",
"media_type": 2,
"caption": {
"text": "Find out which WNBA fan you are based on your searches ๐๐ Hit the link in bio for the full quiz.",
"user": {
"id": "1067259270",
"username": "google",
"full_name": "Google"
}
},
"image_versions2": {
"candidates": [
{
"url": "https://scontent-mia5-1.cdninstagram.com/v/t51.71878-15/520326096_601943249304059_3355842298425776816_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1...",
"width": 640,
"height": 1136
}
]
},
"play_count": 5734199
}
}
],
"paging_info": {
"max_id": "QVFCNFFnOGo1Q1J4T2lhMi1HSzRZQ1hqZDgyUjdyNUZTbnFxajZYXzhpUFFkOERZRjlIZHMtMVBTemYyX2tzWHhOa1VWRWRpaTBGM2prMDlqTnp5VlE2ag==",
"more_available": true
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/instagram/reels/<id>" \
-H "x-api-key: <api-key>"