> ## 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 FBO Account

> Retrieve a single FBO account

Returns a single FBO account by ID.

**Permission:** `fbo_accounts:read`

## Path parameters

<ParamField path="id" type="string" required>
  The FBO account ID
</ParamField>

## Response

```json theme={null}
{
  "data": {
    "id": "fbo_abc123",
    "organizationId": "org_abc123",
    "firstName": "Jane",
    "lastName": "Smith",
    "email": "jane@example.com",
    "phone": "+15551234567",
    "businessName": "Smith Holdings LLC",
    "maxInsuredValueCents": "50000000",
    "isPrimary": false,
    "createdAt": "2025-03-01T12:00:00Z"
  }
}
```
