Skip to main content
GET
/
workspaces
List Workspaces
curl --request GET \
  --url https://api.kakiyo.com/v1/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "workspaces": [
    {
      "id": "workspace_abc123def456",
      "name": "Acme Corporation",
      "clientTeamId": "team_xyz789abc123",
      "createdAt": "2024-01-15T10:30:00.000Z"
    }
  ],
  "total": 5
}
Agency Plan Required - This endpoint is only available for teams on the Agency plan.

Endpoint

GET https://api.kakiyo.com/v1/workspaces

Response

{
  "workspaces": [
    {
      "id": "69724d900007cfde1d88",
      "name": "Acme Corporation",
      "clientTeamId": "69724d91000403019498",
      "createdAt": "2024-01-15T10:30:00.000Z"
    }
  ],
  "total": 1
}

Example Request

curl -X GET "https://api.kakiyo.com/v1/workspaces" \
  -H "Authorization: Bearer YOUR_API_KEY"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of workspaces

workspaces
object[]
total
integer
Example:

5