Developer API
Analyze and download media from every supported platform over a simple REST API. Create a key in your account, then authenticate with a bearer token.
Authentication
Send your API key as a bearer token on every request. Free keys allow 50 requests/day; Pro 500/day; Business 10,000/day.
Authorization: Bearer svd_live_xxxxxxxxxxxxxxxxxxxxxxxxPOST /v1/analyze
Returns title, thumbnail, duration and available formats.
curl https://frenzsave.com/api/v1/analyze \
-H "Authorization: Bearer $SVD_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.tiktok.com/@user/video/123"}'POST /v1/download
Resolves a ready-to-use download_url. Optional formatId and kind (video/audio/image).
curl https://frenzsave.com/api/v1/download \
-H "Authorization: Bearer $SVD_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.instagram.com/reel/abc","kind":"video"}'
# → { "title": "...", "ext": "mp4", "download_url": "https://.../api/download?..." }GET /v1/usage
Check today's usage and your daily limit.
curl https://frenzsave.com/api/v1/usage \
-H "Authorization: Bearer $SVD_KEY"
# → { "plan": "free", "limit": 50, "used": 12, "remaining": 38 }