Everything you need to integrate ApiDash APIs into your application.
Welcome to ApiDash! Follow these steps to start using our APIs:
All API requests require authentication using the ApiDash-Key header.
Important: Keep your API key secure. Never expose it in client-side code or public repositories.
All API endpoints use POST method with JSON body. Here's a basic example:
curl --request POST \
--url 'https://api.playterabox.com/api/terabox-pro' \
--header 'Content-Type: application/json' \
--header 'ApiDash-Key: your_api_key' \
--data '{"url": "https://terabox.com/s/xxxxx"}'API errors return JSON with status and message. Common error codes:
| Code | Meaning |
|---|---|
| 401 | Invalid or missing API key |
| 402 | Insufficient wallet balance |
| 403 | Not subscribed to this API |
| 400 | Invalid request parameters |
We do not enforce artificial rate limits on your API usage.
Extract metadata, download links, and streaming URLs from TeraBox links.
https://api.playterabox.com/api/terabox-pro{"url": "https://terabox.com/s/xxxxx"}For detailed response structure and live testing, visit the Marketplace.