Skip to main content

Workspace API

Access and manage workspace-level settings and information with the Workspace API endpoints.


Endpoints

1. List Workspaces

GET /v1/workspaces

  • Description: Retrieve a list of workspaces.
  • Authentication: Requires x-api-key header.

Query Parameters:

NameInTypeRequiredDescription
limitquerystringNoMax number of results
pagequerystringNoPage number for pagination
searchTextquerystringNoFree text search
x-api-keyheaderstringYesAPI authentication key

Response: [200 OK] - Array of Workspace


2. Get Workspace by ID

GET /v1/workspaces/{workspaceId}

  • Description: Retrieve a workspace by its unique ID.
  • Authentication: Requires x-api-key header.

Path Parameters:

NameInTypeRequiredDescription
workspaceIdpathstringYesWorkspace unique ID
x-api-keyheaderstringYesAPI authentication key

Response: [200 OK] - Workspace


Schemas

Workspace Schema

{
"id": "string",
"title": "string"
}

Workspaces Schema

[
{ /* Workspace object */ }
]