Teams

List team library assets

Returns a paginated list of assets stored in a team’s asset library, filtered by asset type. The response spans every sub-folder under the team’s library root. Requires the workspace:read scope.

get/api/teams/{teamId}/assets

Path parameters

teamIdstring required
Example:a1b2c3d4-0000-0000-0000-000000000000

UUID of the team whose asset library to list.

Query parameters

type'image' | 'mesh' | 'video' | 'prompt' | 'color' | 'palette' required

Asset type to list. One of image, mesh, video, prompt, color, palette.

pagenumber
Example:1

1-based page number. Defaults to 1.

pageSizenumber
Example:20

Number of items per page (1-100). Defaults to 20.

Response

A page of assets in the team library.

Example response

{
  "results": [
    {
      "id": "a1b2c3d4-0000-0000-0000-000000000000",
      "type": "image",
      "name": "Front bumper reference",
      "createdAt": "2026-01-15T12:34:56.000Z",
      "updatedAt": "2026-01-15T12:34:56.000Z",
      "red": 255,
      "green": 128,
      "blue": 64,
      "colors": [
        {
          "name": "Vizcom Blue",
          "color": "#3366FF"
        }
      ]
    }
  ],
  "pagination": {
    "totalPages": 5,
    "currentPage": 1,
    "totalCount": 92,
    "pageSize": 20
  }
}

Changes