Sandbox
Explore every endpoint with simulated responses — no credentials required.
GET
/file/download
Download File
Get a signed temporary download URL for a file via its short URL.
Click "Send request" to see a simulated response.
Code Examples
const res = await fetch('https://rediafile.com/cloud/api/v2/file/download?short_url=2Vv', {
method: 'GET',
headers: { 'Authorization': `Bearer ${token}` },
});
const data = await res.json();