Passo Developers
Api

List the authenticated user's workspaces

GET
/workspaces

Returns the workspaces the caller is a member of, ordered by name. Paginated via limit (default 20, max 100) and offset (default 0); total is the unpaginated count.

Authorization

AuthorizationBearer <token>

A Supabase-issued OAuth user access token. On collection endpoints, pair with a Passo-Workspace header to pick a workspace.

In: header

Query Parameters

limit?integer
Range-9007199254740991 <= value <= 9007199254740991
offset?integer
Range0 <= value <= 9007199254740991

Response Body

application/json

curl -X GET "https://example.com/workspaces"
{  "workspaces": [    {      "id": "string",      "name": "string",      "slug": "string",      "domain": "string",      "archivedAt": "string",      "createdAt": "string",      "updatedAt": "string"    }  ],  "total": -9007199254740991,  "limit": -9007199254740991,  "offset": -9007199254740991}