Switch language

Sandbox

Explore every endpoint with simulated responses — no credentials required.

GET /folder/listing

List Folder

List files and subfolders inside a folder.

Folder ID (root if omitted)

Reset form

Click "Send request" to see a simulated response.

Code Examples

const res = await fetch('https://rediafile.com/cloud/api/v2/folder/listing?folder_id=fld_root', {
  method: 'GET',
  headers: { 'Authorization': `Bearer ${token}` },
});
const data = await res.json();