API endpoints for managing workspaces.
GET /api/v1/workspaces
{ "data": [ { "id": "ws_123", "name": "My Workspace", "created_at": "2025-01-01T00:00:00Z" } ] }
GET /api/v1/workspaces/{workspace_id}
{ "id": "ws_123", "name": "My Workspace", "projects": [], "created_at": "2025-01-01T00:00:00Z" }
Was this page helpful?