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

fetch('https://api.phaseo.app/v1/workspaces/{id}', 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"
  }
}
This endpoint requires a management API key. Standard Gateway API keys are not accepted.
The {id} path segment may be either the workspace UUID or slug.

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

id
string
required

Workspace UUID or slug.

Response

Workspace metadata

data
object
required
Last modified on April 29, 2026