curl --request GET \
--url https://api.getmaxim.ai/v1/workspaces \
--header 'x-maxim-api-key: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"accountId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"pagination": {
"nextCursor": "<string>",
"hasMore": true
}
}List all workspaces in the authenticated account. Optionally filter by id or name to fetch a specific workspace. Supports cursor-based pagination via cursor and limit.
curl --request GET \
--url https://api.getmaxim.ai/v1/workspaces \
--header 'x-maxim-api-key: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"accountId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"pagination": {
"nextCursor": "<string>",
"hasMore": true
}
}Documentation Index
Fetch the complete documentation index at: https://www.getmaxim.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
API key for authentication
Optional workspace id to fetch a single workspace
Optional workspace name to filter by (exact match)
Cursor for pagination - id of the last item from the previous page
Maximum number of workspaces to return (1-100, default 20)
1 <= x <= 100Was this page helpful?