v3

latestOpenAPI 3.1.02026-07-311725107.3 KB
Workspaces

List workspaces

List Workspaces accessible to the authenticated token. Supports JSON, newline-delimited JSON (application/x-ndjson), and CSV (text/csv) response formats via the Accept header.

get/workspaces

Query parameters

page[limit]integer

Maximum number of items to return (1-100)

Example:20

Maximum number of items to return (1-100)

page[offset]integer nullable

Number of items to skip

Number of items to skip

Response

List all workspaces

Example response

{
  "data": [
    {
      "id": "ws_abc123",
      "key": "my-workspace",
      "avatarUrl": "https://example.com/avatar.png",
      "providerUrl": "https://github.com/my-workspace",
      "createdAt": "2024-01-01T00:00:00.000Z",
      "updatedAt": "2024-01-01T00:00:00.000Z"
    }
  ],
  "meta": {
    "hasMore": true
  }
}