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

# Get account

> The account bound to the API key.

<ResponseField name="id" type="string">Account UUID.</ResponseField>
<ResponseField name="name" type="string">Account name.</ResponseField>
<ResponseField name="created_at" type="string">`Y-m-d H:i:s`</ResponseField>
<ResponseField name="updated_at" type="string">`Y-m-d H:i:s`</ResponseField>

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

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