> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trypost.it/llms.txt
> Use this file to discover all available pages before exploring further.

# Get workspace

> Get the current workspace details.

## Response

Returns the workspace bound to the API key.

<ResponseField name="id" type="string">
  The workspace UUID.
</ResponseField>

<ResponseField name="name" type="string">
  The workspace name.
</ResponseField>

<ResponseField name="created_at" type="string">
  Creation timestamp in `Y-m-d H:i:s` format.
</ResponseField>

<ResponseField name="updated_at" type="string">
  Last update timestamp in `Y-m-d H:i:s` format.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X GET https://app.trypost.it/api/workspace \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "d4e5f6a7-b8c9-0d1e-2f3a-4b5c6d7e8f9a",
    "name": "My Brand",
    "created_at": "2025-01-01 00:00:00",
    "updated_at": "2025-01-01 00:00:00"
  }
  ```
</ResponseExample>
