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

> Crypto currencies available for onramp, offramp, and swap — retrieved via GET /v1/crypto-currencies.

Do not hardcode a static asset list. Call `GET /v1/crypto-currencies` and refresh periodically.

## List crypto currencies

```
GET /v1/crypto-currencies
```

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

```json theme={null}
{
  "status": true,
  "message": "Crypto currencies retrieved successfully",
  "data": [
    {
      "id": 1,
      "name": "Tether",
      "symbol": "USDT",
      "logo": "https://…",
      "base_asset_code": null
    }
  ]
}
```

Use `symbol` as `currency` on crypto legs of quotes and orders.

## Single currency

```
GET /v1/crypto-currencies/:identifier
```

`:identifier` is the currency `symbol` (for example `USDT`).

## Currencies per network

```
GET /v1/networks/:identifier/crypto-currencies
```

## Networks per currency

```
GET /v1/crypto-currencies/:identifier/networks
```

<Warning>
  Do not hardcode symbols in production UI or order payloads. New currencies and network mappings can be added without an API version bump.
</Warning>

Use `symbol` in `from.currency` / `to.currency` with `network` on crypto legs.

<CardGroup cols={2}>
  <Card title="Supported networks" icon="link" href="/resources/supported-networks">
    Chain identifiers and environment behaviour.
  </Card>

  <Card title="Supported currencies" icon="dollar-sign" href="/resources/supported-currencies">
    Fiat legs for onramp and offramp.
  </Card>
</CardGroup>
