curl --request GET \
--url 'https://upload.autorender.io/api/v1/folders?parent_folder_no=sD1LvqoDzG' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"folders": [
{
"folder_no": "4bu71SsGmM",
"name": "demo",
"created_at": "2026-03-27T15:59:36.104Z",
"total_items": 0,
"total_size": 0
},
{
"folder_no": "53855hxPoq",
"name": "demo2",
"created_at": "2026-03-27T15:21:40.693Z",
"total_items": 3,
"total_size": 1166070
}
]
}
{
"success": false,
"error": "Unauthorized",
"message": "Invalid or missing API key"
}
Folder Management
List folders
List folders, optionally under a parent folder.
GET
/
api
/
v1
/
folders
curl --request GET \
--url 'https://upload.autorender.io/api/v1/folders?parent_folder_no=sD1LvqoDzG' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"folders": [
{
"folder_no": "4bu71SsGmM",
"name": "demo",
"created_at": "2026-03-27T15:59:36.104Z",
"total_items": 0,
"total_size": 0
},
{
"folder_no": "53855hxPoq",
"name": "demo2",
"created_at": "2026-03-27T15:21:40.693Z",
"total_items": 3,
"total_size": 1166070
}
]
}
{
"success": false,
"error": "Unauthorized",
"message": "Invalid or missing API key"
}
Key type: requires a private key. A public key returns
403 here, because it may only
upload — see key types and scope. Call
this from your server, never from browser code.curl --request GET \
--url 'https://upload.autorender.io/api/v1/folders?parent_folder_no=sD1LvqoDzG' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"folders": [
{
"folder_no": "4bu71SsGmM",
"name": "demo",
"created_at": "2026-03-27T15:59:36.104Z",
"total_items": 0,
"total_size": 0
},
{
"folder_no": "53855hxPoq",
"name": "demo2",
"created_at": "2026-03-27T15:21:40.693Z",
"total_items": 3,
"total_size": 1166070
}
]
}
{
"success": false,
"error": "Unauthorized",
"message": "Invalid or missing API key"
}
Overview
Returnsfolders. Each row carries folder_no, name, created_at, total_items, and total_size (the total bytes under that folder).
Query parameters
| Parameter | Type | Description |
|---|---|---|
parent_folder_no | string | List only the direct children of this folder. Omit it for root-level folders. |
Next steps
Create folder
Add a new folder, optionally nested under a parent.
List files
Page through the files inside a folder.
Authorizations
API key for public endpoints. Can also be provided via Authorization: Bearer
Query Parameters
Filter by parent folder number
Partial name match (case-insensitive)
Available options:
name_asc, name_desc, created_at_asc, created_at_desc Response
List of folders
List of folders
Show child attributes
Show child attributes
Was this page helpful?