🧪 API Sandbox

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

Account Package

Check your storage limits, max upload size and plan restrictions.

GET https://rediafile.com/cloud/api/v2/account/package

Parameters

Token from /authorize.
Your account id.

Response

Select an endpoint and click "Send Request" to see a simulated response.
const params = new URLSearchParams();
const data = new FormData();
data.append('access_token', 'demo_token_abc123');
data.append('account_id', 'acc_demo_001');

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