🧪 API Sandbox

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

Download Link

Generate a time-limited, trackable download token.

GET https://rediafile.com/cloud/api/v2/file/download

Parameters

Auth token.
File id to download.

Response

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

url = 'https://rediafile.com/cloud/api/v2/file/download'
params = {
    'access_token': 'demo_token_abc123',
    'file_id': '10245',
}
r = requests.get(url, params=params)
print(r.json())