InstagramSTABLE
reels · posts · stories
Paste a link, get back clean media URLs and full metadata. No watermarks, no headless browsers, no scraping stack to maintain.
curl -s "https://api.saveapi.org/v1/download" \ -H "Authorization: Bearer sk_live_xxxx" \ -G --data-urlencode "url=https://instagram.com/reel/Cx1a2b3c"
{ "success": true, "platform": "instagram",
"medias": [{ "type": "video", "url": "https://...", "ext": "mp4" }] }The response shape never changes between sources. Detect nothing, branch nowhere — write the parser once and forget it.
Everything is a GET. Authorize with a bearer token, pass the link, read the JSON.
/v1/downloadDetect the platform from the link and resolve it to direct media URLs1 credit/v1/{platform}Target one platform directly — same response shape1 credit/v1/detectCheck whether a link is supported before spending a creditfree/v1/meKey details, plan limits and remaining quotafree/v1/usageDaily request history and per-platform breakdownfreeBilled per successful request. Private, deleted or failed links are never charged.
We never touch the files. The API returns direct links from the source platform's own CDN — nothing is downloaded to, passed through, or stored on our servers.
Key in under a minute. 200 requests a day, free forever.