🧪 API Sandbox

Test Rediafile Cloud API v2 endpoints live. Responses are simulated — no real credentials required.

Remote URL Import

Ingest a file from a remote URL without using local bandwidth.

POST https://rediafile.com/cloud/api/v2/file/url_upload_add

Parameters

Auth token.
Account id.
Remote file URL to import.

Response

Select an endpoint and click "Send Request" to see a simulated response.
import requests

url = 'https://rediafile.com/cloud/api/v2/file/url_upload_add'
data = {
    'access_token': 'demo_token_abc123',
    'account_id': 'acc_demo_001',
    'url': 'https://example.com/bigfile.zip',
}
r = requests.post(url, data=data)
print(r.json())