v3

latestOpenAPI 3.0.0Proprietary2026-08-041323140.2 KB
API Endpoints

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.

get/projects

Query parameters

namestring

Filter projects whose name contains this string (case-insensitive).

folder_pathstring

Filter projects by folder path (e.g. "Clients/Acme/Videos"). Use "/" to separate nested folders. Returns only projects directly inside the deepest folder.

created_bystring

Filter projects created by this user UUID. Pass me to filter by the authenticated user.

created_afterstring date-time

Filter projects created after this ISO 8601 timestamp.

created_beforestring date-time

Filter projects created before this ISO 8601 timestamp.

updated_afterstring date-time

Filter projects updated after this ISO 8601 timestamp.

updated_beforestring date-time

Filter projects updated before this ISO 8601 timestamp.

sort'name' | 'created_at' | 'updated_at' | 'last_viewed_at'

Sort field. Defaults to created_at.

direction'asc' | 'desc'

Sort direction. Defaults to desc.

cursorstring

Pagination cursor from a previous response's pagination.next_cursor.

limitinteger

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"
    }
  ]
}