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

> List the addresses for an FBO account

Returns all addresses associated with an FBO account.

**Permission:** `fbo_accounts:read`

## Path parameters

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

## Response

```json theme={null}
{
  "data": [
    {
      "id": "addr_abc123",
      "fboAccountId": "fbo_abc123",
      "type": "return",
      "street": "123 Main St",
      "city": "Dallas",
      "state": "TX",
      "zip": "75001",
      "country": "US",
      "isActive": true,
      "updatedAt": 1709654321000,
      "createdAt": "2025-03-01T12:00:00Z"
    }
  ]
}
```

<Note>
  `type` is one of `return`, `billing`, or `alternate`.
</Note>
