Skip to main content
GET
/
workspaces
List workspaces
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.phaseo.app/v1/workspaces', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": [
    {
      "id": "33333333-3333-4333-8333-333333333333",
      "name": "Production",
      "slug": "production",
      "created_by": "user_abc123",
      "created_at": "2026-04-28T12:00:00Z",
      "updated_at": "2026-04-28T12:15:00Z"
    }
  ],
  "total_count": 2
}

Documentation Index

Fetch the complete documentation index at: https://docs.ai-stats.phaseo.app/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint requires a management API key. Standard Gateway API keys are not accepted.
Returns workspaces visible to the authenticated management context with offset and limit pagination.

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

offset
integer
default:0

Number of workspaces to skip for pagination.

Required range: x >= 0
limit
integer
default:100

Maximum number of workspaces to return.

Required range: 1 <= x <= 250

Response

Workspace list

data
object[]
required
total_count
integer
required
Required range: x >= 0
Example:

2

Last modified on April 29, 2026