List projects
List projects accessible to the authenticated user within a drive.
The drive is determined from the access token.
Results are paginated. Use the cursor from the response pagination.next_cursor to fetch subsequent pages.
Query parameters
Filter projects whose name contains this string (case-insensitive).
Filter projects by folder path (e.g. "Clients/Acme/Videos"). Use "/" to separate nested folders. Returns only projects directly inside the deepest folder.
Filter projects created by this user UUID. Pass me to filter by the authenticated user.
Filter projects created after this ISO 8601 timestamp.
Filter projects created before this ISO 8601 timestamp.
Filter projects updated after this ISO 8601 timestamp.
Filter projects updated before this ISO 8601 timestamp.
Sort field. Defaults to created_at.
Sort direction. Defaults to desc.
Pagination cursor from a previous response's pagination.next_cursor.
Number of projects per page (1-100). Defaults to 20.
Response
Projects listed successfully
Example response
{
"data": [
{
"id": "9f36ee32-5a2c-47e7-b1a3-94991d3e3ddb",
"name": "Marketing Video",
"created_at": "2025-11-18T10:30:00Z",
"updated_at": "2025-11-19T14:00:00Z",
"folder_path": "Clients/Acme/Videos"
}
]
}