Skip to main content
GET
/
workspaces
List workspaces
curl --request GET \
  --url https://slog.ai/workspaces \
  --header 'slog-api-key: <api-key>'
{
  "workspaces": [
    {
      "id": "ws_01jqworksp001",
      "name": "Acme Engineering",
      "slug": "acme-engineering",
      "createdAt": "2026-01-01T00:00:00.000Z",
      "updatedAt": "2026-01-01T00:00:00.000Z"
    }
  ],
  "pagination": {
    "limit": 250,
    "nextCursor": null
  }
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Query Parameters

fields
string

Comma-separated list of fields to return. Supports brace notation for nested objects: fields=id,title,assignee{name,email}. When omitted, a default set of fields is returned.

Response

All workspaces for the user (no cursor pagination; full list returned).

workspaces
object[]
pagination
object