Endpoint Playground
Test Crawlora's Retrieve Instagram Reels for a user API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/instagram/reels/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Instagram user ID | |
| max_id | string | No | Pagination cursor for fetching the next page of Reels |
{
"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
}
}
}Public Playground
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.
Returns a feed of Instagram Reels for the specified user ID. Supports pagination via `max_id`.
{
"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 "https://api.crawlora.net/api/v1/instagram/reels/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"