Skip to main content

Workspaces Endpoints

Endpoints for listing and managing workspaces.

List Workspaces

Retrieve all workspaces you have access to.
GET /api/v1/workspaces

Response

{
  "data": [
    {
      "id": "ws_123",
      "name": "My Workspace",
      "created_at": "2025-01-01T00:00:00Z"
    }
  ]
}

Get Workspace

Retrieve a single workspace by ID.
GET /api/v1/workspaces/{workspace_id}

Response

{
  "id": "ws_123",
  "name": "My Workspace",
  "projects": [],
  "created_at": "2025-01-01T00:00:00Z"
}