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

# List Off-Ramp Accounts

> GET /v1/ramp/recipients/{id}/offramp-accounts — List all off-ramp accounts for a recipient

<Note>
  **Endpoint:** `GET https://api.rebelfi.io/v1/ramp/recipients/{id}/offramp-accounts`
</Note>

List all off-ramp accounts associated with a recipient.

### Path Parameters

| Field | Type      | Required | Description  |
| ----- | --------- | -------- | ------------ |
| `id`  | `integer` | Yes      | Recipient ID |

### Example Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://api.rebelfi.io/v1/ramp/recipients/1/offramp-accounts" \
    -H "x-api-key: your_api_key"
  ```

  ```typescript SDK theme={null}
  const offrampAccounts = await client.ramp.listRecipientOfframpAccounts(1);
  ```
</CodeGroup>

### Example Response

```json theme={null}
[
  {
    "id": 1,
    "source_crypto_address": "0xABC123...",
    "source_asset": "USDC",
    "destination_asset": "USD",
    "network_id": "solana-mainnet",
    "rail": "ach",
    "fiat_bank_name": "Chase Bank",
    "fiat_account_type": "checking",
    "fiat_account_holder_name": "OnEdge Inc",
    "status": "active"
  }
]
```

### Response Fields

Each object in the array contains:

| Field                      | Type     | Description                            |
| -------------------------- | -------- | -------------------------------------- |
| `id`                       | `number` | Off-ramp account identifier            |
| `source_crypto_address`    | `string` | Crypto deposit address for off-ramping |
| `source_asset`             | `string` | Source crypto asset                    |
| `destination_asset`        | `string` | Destination fiat currency              |
| `network_id`               | `string` | Blockchain network identifier          |
| `rail`                     | `string` | Payment rail                           |
| `fiat_bank_name`           | `string` | Destination bank name                  |
| `fiat_account_type`        | `string` | Bank account type                      |
| `fiat_account_holder_name` | `string` | Name on the bank account               |
| `status`                   | `string` | Account status                         |
