Get all folders for a workspace. Supports filtering by favorites and search.
curl --request GET \
--url https://app.mavera.io/api/v1/folders \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "folder",
"name": "<string>",
"workspace_id": "<string>",
"file_count": 123,
"is_shared": true,
"is_favorite": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"has_more": true,
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.mavera.io/llms.txt
Use this file to discover all available pages before exploring further.
API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Workspace ID to list folders from
Filter to only show favorited folders
Search folders by name (case-insensitive)
Maximum number of results (default 50, max 100)
1 <= x <= 100Cursor for pagination (folder ID from previous response)
curl --request GET \
--url https://app.mavera.io/api/v1/folders \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "folder",
"name": "<string>",
"workspace_id": "<string>",
"file_count": 123,
"is_shared": true,
"is_favorite": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"has_more": true,
"next_cursor": "<string>"
}