list_workspaces
GET /workspaces
Lists all workspaces the authenticated user has access to.
Parameters: Optional dictionary of query parameters.
Returns: List of workspace summaries.
Example:
get_workspace
GET /workspaces/{teamSlug}
Retrieves detailed information about a specific workspace. You can pass the team slug as a plain string or as a dictionary.
Parameters:
| Field | Type | Required | Description |
|---|---|---|---|
team_slug | str | Yes | Workspace slug identifier |
get_workspace_nodes
GET /workspaces/{teamSlug}/nodes
Lists the TEE nodes available to a workspace. Supports pagination.
Parameters:
| Field | Type | Required | Description |
|---|---|---|---|
team_slug | str | Yes | Workspace slug identifier |
page | int | No | Page number (1-based) |
page_size | int | No | Items per page |
get_workspace_quotas
GET /workspaces/{teamSlug}/quotas
Returns the resource quotas and current usage for a workspace. This includes limits on CVMs, vCPUs, memory, and other resources.
Like get_workspace, you can pass the team slug as a string or dictionary.
Parameters:
| Field | Type | Required | Description |
|---|---|---|---|
team_slug | str | Yes | Workspace slug identifier |
Related
- Apps — app-level operations
- SDK Overview — full method listing

