🧪 API Sandbox

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

Authorize

Authenticate with username/password or API keys to receive an access_token and account_id.

POST https://rediafile.com/cloud/api/v2/authorize

Parameters

Your Rediafile username or email.
Your account password.

Response

Select an endpoint and click "Send Request" to see a simulated response.
const params = new URLSearchParams();
const data = new FormData();
data.append('username', 'your_username');
data.append('password', 'your_password');

const resp = await fetch('https://rediafile.com/cloud/api/v2/authorize', {
  method: 'POST',
  body: data
});
const json = await resp.json();
console.log(json);