Axelered AI
API Workspace

List Workspaces

GET
/w

Retrieve a paginated list of all available workspaces.

Query Parameters

limit?Limit
Default50
Range1 <= value <= 100
cursor?string|null

Response Body

application/json

application/json

{  "data": {    "cursor": "Mg==",    "items": [      {        "config": {          "chat": {            "llmOverrides": {},            "retrieve": {              "blocksLimit": 10,              "docsLimit": 10,              "includeVector": false,              "scoreThreshold": 0.5            }          },          "search": {            "llmOverrides": {},            "retrieve": {              "blocksLimit": 10,              "docsLimit": 10,              "includeVector": false,              "scoreThreshold": 0.5            }          }        },        "createdAt": "2026-05-20T10:14:00.000Z",        "id": "018f8e02-4b2a-7c9d-8d4e-123456789abc",        "name": "production-core",        "searchLlmId": "018f8e02-4b2a-7c9d-8d4e-111122223333",        "updatedAt": "2026-05-20T10:14:00.000Z"      },      {        "chatLlmId": "018f8e02-4b2b-7c9d-8d4e-111122223333",        "config": {          "chat": {            "llmOverrides": {},            "retrieve": {              "blocksLimit": 10,              "docsLimit": 10,              "includeVector": false,              "scoreThreshold": 0.5            }          },          "search": {            "llmOverrides": {},            "retrieve": {              "blocksLimit": 10,              "docsLimit": 5,              "includeVector": false,              "scoreThreshold": 0.7            }          }        },        "createdAt": "2026-05-19T08:30:00.000Z",        "id": "018f8e02-4b2a-7c9d-8d4e-987654321abc",        "name": "staging-env",        "updatedAt": "2026-05-19T08:30:00.000Z"      }    ],    "limit": 50,    "total": 2  },  "status": "ok"}
{  "detail": [    {      "loc": [        "path",        "workspace_id"      ],      "msg": "Input should be a valid UUID",      "type": "uuid_parsing",      "input": "not-a-uuid"    },    {      "loc": [        "body",        "name"      ],      "msg": "Field required",      "type": "missing"    }  ]}