Developer Access
How to Use
To use our API, send a POST request to /api/v1/fetch with your API key in the
header.
1. Python Example
import requests
url = "http://localhost:3000/api/v1/fetch"
headers = { "x-api-key": "YOUR_API_KEY" }
payload = { "url": "TERABOX_SHARE_LINK" }
response = requests.post(url, json=payload, headers=headers)
print(response.json())
2. Node.js Example
const axios = require('axios');
axios.post('http://localhost:3000/api/v1/fetch', {
url: 'TERABOX_SHARE_LINK'
}, {
headers: { 'x-api-key': 'YOUR_API_KEY' }
}).then(res => console.log(res.data));