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

# Get Organization Profile

> Retrieve the current organization's profile

Returns the organization profile associated with the API key, including branding and settings.

**Permission:** `organizations:read`

## Response

```json theme={null}
{
  "data": {
    "id": "org_abc123",
    "name": "Acme Precious Metals",
    "maxInsuredValueCents": "100000000",
    "brandName": "Acme PM",
    "brandPrimaryColor": "#1a1a2e",
    "brandSecondaryColor": "#e94560",
    "statementFooterText": "Thank you for your business.",
    "statementReplyToEmail": "support@acmepm.com",
    "hideVaultDetails": false,
    "createdAt": "2025-01-15T10:30:00Z"
  }
}
```

<Note>
  Monetary amounts (e.g. `maxInsuredValueCents`) are returned as strings to preserve precision.
</Note>
