Sandbox
Explore every endpoint with simulated responses — no credentials required.
POST
/file/url_upload_add
Remote URL Upload
Queue a file for upload from a remote URL (server-to-server fetch).
Click "Send request" to see a simulated response.
Code Examples
const res = await fetch('https://rediafile.com/cloud/api/v2/file/url_upload_add', {
method: 'POST',
headers: { 'Authorization': `Bearer ${token}` },
body: new URLSearchParams({
url: 'https://example.com/large-file.zip'
}),
});
const data = await res.json();