Instagram Profile Reels Full API
Scrape Instagram Profile Reels Full data with one API call. Returns a creator's recent reels with full engagement — views, likes, comments, AND the per-reel share count — in a single call. ScrapeCreators' standard /profile/reels endpoint returns views/likes/comments but leaves engagement.shares null (its upstream has no per-post reshare count); this composite fans out to a second mobile source that exposes the share number and merges it back onto each item by post id. The ScrapeCreators leg is critical (its failure refunds the full call); the shares leg is best-effort (on failure the items still return with shares null and 4 of the 5 credits are refunded, so you pay the standard 1-credit list price). shares_coverage reports the fraction of returned items that received a real share number, and legs[] shows each leg's status. Paginate with next_cursor. Flat 5 credits when both legs succeed.
Last updated June 2026
Try the Instagram Profile Reels Full API
See real data before writing a single line
Searching 42 platforms in parallel
What can you do with the Profile Reels Full API?
The Profile Reels Full endpoint gives you structured Instagram data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl "https://www.socialcrawl.dev/v1/instagram/profile/reels/full" \
-H "x-api-key: YOUR_API_KEY"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/instagram/profile/reels/full",
headers={"x-api-key": "YOUR_API_KEY"},
params={},
)
data = response.json()const params = new URLSearchParams({
});
const response = await fetch(`https://www.socialcrawl.dev/v1/instagram/profile/reels/full?${params}`, {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| handle | No | Instagram username (with or without a leading @). Required unless user_id is given. The share-count leg needs a handle; a user_id-only call returns views/likes/comments with shares null (partial refund). |
| user_id | No | Numeric Instagram user id. Alternative to handle. |
| cursor | No | Opaque cursor from a prior response's next_cursor to page deeper. |
How does the Instagram Profile Reels Full API work?
Send a GET request with your API key and get back clean, structured JSON. Every response follows our unified schema with computed fields.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 42 platforms covering 10B+ monthly active users.
One schema, every platform
Query 42 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
Every response includes engagement_rate, estimated_reach, content_category, and language — ready to use.
See your data before you code
Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Ready to scrape Instagram Profile Reels Full data?
Get your API key and start pulling Instagram data in under 60 seconds.
