Extract profiles, posts, reels, comments, highlights, and story data
Extract profiles, posts, reels, comments, highlights, and story data.
Instagram reaches over 2 billion monthly active users globally and is the leading platform for visual content, influencer marketing, and brand engagement data.
Base URL: /v1/instagram/...
Not sure which Instagram endpoint to call? Most are 1cr, but share counts, follower lists, stories, and comments come from a 5cr upstream (
/v1/instagram/post has no share count, /v1/instagram/post/stats does). See Which endpoint should I use?.How do I get started with Instagram data?
1. Fetch a profile
curl "https://www.socialcrawl.dev/v1/instagram/profile?handle=instagram" \
-H "x-api-key: sc_your_api_key_here"2. Fetch their content
curl "https://www.socialcrawl.dev/v1/instagram/profile/posts?handle=instagram" \
-H "x-api-key: sc_your_api_key_here"3. Read computed fields
Every response includes computed fields: engagement_rate, language, content_category, and estimated_reach. See Computed fields for formulas, clamping rules, and null semantics.
What Instagram data can I access?
์๋ํฌ์ธํธ 33๊ฐ๋ฅผ ์ ๊ณตํด์.
| ์๋ํฌ์ธํธ | ๊ฒฝ๋ก | ํฌ๋ ๋ง ๋ฑ๊ธ |
|---|---|---|
| List Instagram reels using an audio track | /v1/instagram/audio/reels | standard (1cr) |
| Get Instagram basic profile | /v1/instagram/basic-profile | standard (1cr) |
| Get Instagram highlight detail | /v1/instagram/highlight/detail | standard (1cr) |
| List Instagram story highlights | /v1/instagram/highlights | standard (1cr) |
| Get Instagram post details | /v1/instagram/post | standard (1cr) |
| Get Instagram user profile | /v1/instagram/profile | standard (1cr) |
| Instagram profile, recent posts, and computed analytics in one call. | /v1/instagram/profile/full | standard (5cr) |
| List Instagram user posts | /v1/instagram/profile/posts | standard (1cr) |
| List Instagram user reels | /v1/instagram/profile/reels | standard (1cr) |
| Search Instagram profiles by keyword | /v1/instagram/search/profiles | standard (1cr) |
| Search Instagram reels | /v1/instagram/search/reels | standard (1cr) |
| Get Instagram user embed HTML | /v1/instagram/user/embed | standard (1cr) |
| Look up one Instagram comment by URL or id | /v1/instagram/comment | advanced (5cr) |
| Get Instagram engagement statistics | /v1/instagram/engagement | advanced (5cr) |
| List Instagram followers | /v1/instagram/followers | advanced (5cr) |
| List Instagram following | /v1/instagram/following | advanced (5cr) |
| List recent posts at an Instagram location | /v1/instagram/location/posts | advanced (5cr) |
| List trending Instagram music | /v1/instagram/music/trending | advanced (5cr) |
| List Instagram post comments | /v1/instagram/post/comments | advanced (5cr) |
| List Instagram post likers | /v1/instagram/post/likers | advanced (5cr) |
| Get Instagram post stats including the share count | /v1/instagram/post/stats | advanced (5cr) |
| Instagram posts with views, likes, comments, and per-post share counts where available, in one call. | /v1/instagram/profile/posts/full | advanced (5cr) |
| Instagram reels with views, likes, comments, and per-reel share counts where available, in one call. | /v1/instagram/profile/reels/full | advanced (5cr) |
| Get trending Instagram reels | /v1/instagram/reels/trending | advanced (5cr) |
| Search Instagram posts by hashtag | /v1/instagram/search/hashtag | advanced (5cr) |
| Search Instagram locations | /v1/instagram/search/location | advanced (5cr) |
| Search Instagram music | /v1/instagram/search/music | advanced (5cr) |
| List similar Instagram accounts | /v1/instagram/similar | advanced (5cr) |
| List an Instagram user's active stories | /v1/instagram/stories | advanced (5cr) |
| Download a single Instagram story | /v1/instagram/story/download | advanced (5cr) |
| List posts an Instagram user is tagged in | /v1/instagram/tagged | advanced (5cr) |
| Get Instagram username suggestions | /v1/instagram/username-suggestions | advanced (5cr) |
| Get Instagram media transcript | /v1/instagram/media/transcript | premium (10cr) |
What should I know about Instagram data?
- All endpoints use
GETmethod with query parameters - Authentication via
x-api-keyheader - Responses follow the unified SocialCrawl schema
Official Instagram Resources
- Instagram Graph API โ Official Meta developer documentation
- Instagram Basic Display API โ Basic profile and media access
