Instagram User Embed API
Scrape Instagram User Embed data with one API call. Returns embeddable HTML snippet for an Instagram user profile that can be embedded on external websites.
Last updated August 2026Maintained by the SocialCrawl team
Returns an embeddable HTML snippet for an Instagram profile, meant to be dropped into a page on your own site.
Use it when you want to display a profile on a web page; use profile instead when you need the follower numbers and bio as data.
Searching 51 platforms in parallel
What can you do with the User Embed API?
The User Embed endpoint gives you structured Instagram data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/instagram/user/embed?handle=instagram"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/instagram/user/embed",
params={
'handle': 'instagram',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/instagram/user/embed?handle=instagram",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| handle | Yes | Instagram username without the @ symbol |
What does the Instagram User Embed API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "instagram",
"endpoint": "/v1/instagram/profile",
"data": {
"author": {
"id": "528817151",
"username": "nasa",
"display_name": "NASA",
"avatar_url": "https://scontent-mia3-2.cdninstagram.com/v/t51.2885-19/29090066_159271188110124_1152068159029641216_n.jpg?stp=dst-jpg_s320x320_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-mia3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gF_ZOyacP2ZxvTwISAHsSMx5asgW1AxJ-EvdVyQnWaIqOoHbHMxaugucZE9K7U6iePJ5sy_AwBliYYR9brDmaTN&_nc_ohc=Nw8H9lTngQgQ7kNvwGnjtoO&_nc_gid=oVc10Bvl_SYb8NYf4N9zow&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AQBRPsRNYH983CV3Cpi5GEmECZIFeJsRBFCxbj0YQVLw4A&oe=6A631B69&_nc_sid=8b3546",
"bio": "Making the seemingly impossible, possible. ✨",
"verified": true,
"followers": 104307425,
"following": 91,
"posts_count": 4853,
"likes_count": null,
"url": "https://www.nasa.gov/",
"private": false,
"joined_at": null
},
"computed": {
"engagement_rate": 0.00193,
"language": "en",
"content_category": "other",
"estimated_reach": null
}
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the Instagram User Embed API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
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 51 platforms covering 10B+ monthly active users.
One schema, every platform
Query 51 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record 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"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I get Instagram embed data for a user?
What fields does the Instagram Embed API return?
When should I use the embed endpoint instead of profile?
Is the embed endpoint cheaper than the profile endpoint?
Can I build an Instagram link preview with the embed API?
Ask AI about SocialCrawl
Ready to scrape Instagram User Embed data?
Get your API key and start pulling Instagram data in under 60 seconds.
