> ## 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.

# List FBO Accounts

> Retrieve a list of FBO accounts

Returns a paginated list of FBO accounts within the organization.

**Permission:** `fbo_accounts:read`

## Query parameters

<ParamField query="page" type="number" default="1">
  1-indexed page number.
</ParamField>

<ParamField query="limit" type="number" default="25">
  Number of results per page (max 100).
</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"
    }
  ],
  "pagination": {
    "page": 1,
    "hasMore": false
  }
}
```
