Back to toolkit

— Developer API

One endpoint. Every platform.

Send a link, get back structured JSON with the media, author, thumbnails, and direct download URLs. Free, no key required.

1GET with ?url=, or POST JSON { url }.
2Tool is auto-detected from the host. Override with tool=terabox.
3CORS is open. Call it from any browser, server, or script.
GET / POSTJSONNo auth

Supported tools

Pass tool= to override auto-detection.

teraboxinstagramtiktokfacebooktwittersnapchatpinterestredditthreadstumblrtwitch
POSThttps://your-app.lovable.app/api/public/fetch
curl -s "https://your-app.lovable.app/api/public/fetch" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.instagram.com/reel/xxxx/"}'
Response
{
  "ok": true,
  "tool": "instagram",
  "data": {
    "title": "...",
    "author": { "name": "...", "username": "...", "verified": true },
    "thumbnail": "...",
    "media": {
      "videos": [{ "url": "...", "quality": "720p", "format": "mp4" }],
      "audios": [],
      "photos": []
    }
  }
}