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

# Supported Currencies

> Fiat currencies for onramp and offramp — retrieved via GET /v1/fiat-currencies.

Call `GET /v1/fiat-currencies` when building amount inputs and order `from`/`to` legs.

## List fiat currencies

```
GET /v1/fiat-currencies
```

**Auth:** `pk_*` or `sk_*`.

```json theme={null}
{
  "status": true,
  "message": "Fiat currencies retrieved successfully",
  "data": [
    {
      "id": 1,
      "code": "NGN",
      "name": "Nigerian Naira",
      "short_name": "Naira",
      "symbol": "₦",
      "decimals": 2,
      "logo": "https://…"
    }
  ]
}
```

| Field      | Use in integration                       |
| ---------- | ---------------------------------------- |
| `code`     | Fiat leg identifier in quotes and orders |
| `decimals` | Amount precision for display             |
| `symbol`   | UI formatting                            |

## Institutions

Banks are scoped to a fiat code:

```
GET /v1/institutions?fiat=NGN
```

Use institution `code` as `institution_code` on offramp `recipient` and as `bank_code` on account lookup. See [Offramp quickstart](/quickstarts/offramp).

## Account lookup

```
GET /v1/account-lookup?account_number=0123456789&bank_code=000004
```

Requires a valid institution `code` from `/v1/institutions`.

<Warning>
  Do not hardcode fiat codes. Use `code` from this endpoint in order legs, and respect `decimals` when displaying amounts.
</Warning>

<CardGroup cols={2}>
  <Card title="Supported assets" icon="coins" href="/resources/supported-assets">
    Crypto side of onramp and offramp pairs.
  </Card>

  <Card title="Onramp quickstart" icon="arrow-down" href="/quickstarts/onramp">
    Fiat pay-in to crypto settlement.
  </Card>
</CardGroup>
