How to Call the Instagram Reels API
Simple REST API endpoint. Just make a GET request with your API key and get structured data back.
GETCode Examples
cURL
curl -X GET 'https://api.parseium.com/v1/instagram-reels?username=billieeilish&api_key=YOUR_API_KEY'TypeScript
const response = await fetch(`https://api.parseium.com/v1/instagram-reels?username=billieeilish&api_key=${process.env.PARSEIUM_API_KEY}`, {
method: 'GET',
});
const data = await response.json();
console.log(data);Python
import requests
import os
api_key = os.environ['PARSEIUM_API_KEY']
response = requests.get(
f'https://api.parseium.com/v1/instagram-reels?username=billieeilish&api_key={api_key}'
)
data = response.json()
print(data)Query Parameters
Pass parameters in the URL query string:
username=billieeilishResponse Schema
The API returns structured JSON data with the following schema:
{
"user_id": {
"type": "string"
},
"reels": [
{
"id": {
"type": "string"
},
"code": {
"type": "string"
},
"thumbnail_url": {
"type": "string"
},
"video_url": {
"type": "string"
},
"view_count": {
"type": "number"
},
"like_count": {
"type": "number"
},
"comment_count": {
"type": "number"
},
"play_count": {
"type": "number"
},
"duration": {
"type": "number"
},
"timestamp": {
"type": "number"
},
"caption": {
"type": "string"
}
}
],
"pagination": {
"continuation": {
"type": "string"
},
"has_more_reels": {
"type": "boolean"
}
}
}Need more details? Check out our full API documentation for authentication, error handling, rate limits, and advanced options.
Use Cases for Instagram Reels
See how developers use this API in production applications.
Content Analytics
Track reel performance metrics including views, likes, comments, and play counts to analyze engagement patterns.
Video Archive
Backup complete reels collections with metadata, thumbnails, and video URLs for content preservation.
Trend Analysis
Monitor trending reels, posting frequency, and content strategies across profiles systematically.
Simple, Transparent Pricing
Every API call to Instagram Reels costs 1 credit
Choose a plan based on your monthly usage. All plans include access to all APIs.
150,000 API calls/mo
$0.33 per 1K requests
- 150,000 credits/month
- 3 Concurrent Requests
- Email support
- Priority processing
700,000 API calls/mo
$0.14 per 1K requests
- 700,000 credits/month
- 10 Concurrent Requests
- Priority support
- Advanced features
3,000,000 API calls/mo
$0.10 per 1K requests
- 3M credits/month
- 30 Concurrent Requests
- Dedicated support
- Custom integrations
Need more? Check out our for enterprise options and custom plans.
Frequently Asked Questions
Common questions about the Instagram Reels API.
How does pagination work?
First request: use query param `?username=handle` to get the first batch of reels plus `user_id` and `continuation`. For subsequent pages, use both `?user_id=...&continuation=...` to fetch the next batch. Continue until `has_more_reels` is false.
How many reels per request?
Each request returns a batch of reels (typically 12-50 depending on availability). Use the `continuation` and `has_more_reels` fields to retrieve the complete feed.
What does pagination cost?
Each API request costs 1 credit, whether it's the initial call or a pagination request. To fetch all reels from a profile with 100 reels, you'll need multiple credits based on batch sizes.
Can I fetch reels from private accounts?
No, the API only returns publicly available reels. Private accounts will return an empty reels array or limited metadata.
Are video URLs included?
Yes, when available. The `video_url` field contains the direct link to the reel video. Note that URLs may expire after some time as per Instagram's policies.
Can I test the API risk-free?
Yes! When you sign up you get 1,000 free credits — no credit card required. Try the API with real requests before committing.
What if I need help integrating?
We offer documentation, code examples in multiple languages, and email support. Most questions are answered within 24 hours.
How long does integration take?
Minutes. It's a simple REST API — make an HTTP request, get JSON back. No SDKs to install, no complex auth flows.
Related APIs
Explore other ready-to-use APIs that might interest you.