Returns the list of workspaces accessible to the authenticated actor.
Workspace visibility depends on the token scope:
This endpoint does not modify any data.
Use this endpoint when you need to:
curl -X GET https://api.hawzu.com/api/v1/workspaces \
-H "Authorization: Bearer YOUR_API_TOKEN"This endpoint does not accept any path, query, or body parameters.
Authentication is required via the Authorization header.
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer token in the format Bearer <API_TOKEN> |
{
"data": [
{
"id": "ws_001",
"name": "Hawzu Workspace",
"created_at": "2025-01-01T00:00:00Z"
}
]
}