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

# Get profile

# Get Profile

Retrieve the authenticated user's profile.

**`GET /account/profile`**  ·  🔒 Auth required

***

## Response `200 OK`

```json theme={null}
{
  "id": "usr_01hx3k9j2e4m7n8p",
  "email": "alice@example.com",
  "name": "Alice",
  "timezone": "UTC",
  "language": "en",
  "created_at": "2024-09-15T10:30:00Z",
  "updated_at": "2024-11-02T08:15:44Z"
}
```

| Field        | Type     | Description             |
| ------------ | -------- | ----------------------- |
| `id`         | `string` | Unique user ID          |
| `email`      | `string` | Email address           |
| `name`       | `string` | Display name            |
| `timezone`   | `string` | IANA timezone           |
| `language`   | `string` | ISO 639-1 language code |
| `created_at` | `string` | ISO 8601                |
| `updated_at` | `string` | ISO 8601                |

***

## Example

```bash theme={null}
curl https://api.sertexity.com/v1/account/profile \
  -H "Authorization: Bearer <access_token>"
```
