🧪 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.
<?php
$ch = curl_init('https://rediafile.com/cloud/api/v2/account/package?access_token=demo_token_abc123&account_id=acc_demo_001');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$resp = curl_exec($ch);
curl_close($ch);
echo $resp;