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

# ✨ January 7, 2026 - Multi-Currency Support

> Multi-Currency Support for market/details and token/details endpoints

**TL;DR:** Get prices in EUR, GBP, JPY and 8 other fiat currencies on `market/details` and `token/details` endpoints via the new `currencies` parameter.

***

Added support for multiple fiat currencies on `market/details` and `token/details` endpoints.

### New Parameter

* `currencies` - Comma-separated list of fiat currencies (e.g., `currencies=EUR,USD,GBP`)

### Supported Currencies

| Currency          | Code            |
| ----------------- | --------------- |
| US Dollar         | `USD` (default) |
| Euro              | `EUR`           |
| British Pound     | `GBP`           |
| Japanese Yen      | `JPY`           |
| Swiss Franc       | `CHF`           |
| Canadian Dollar   | `CAD`           |
| Australian Dollar | `AUD`           |
| Chinese Yuan      | `CNY`           |
| Korean Won        | `KRW`           |
| Indian Rupee      | `INR`           |
| Brazilian Real    | `BRL`           |

### How it works

* All fields ending in `USD` get corresponding fields for each requested currency
* Example: `priceUSD` → `priceEUR`, `priceGBP`, etc.
* Exchange rates are fetched from reliable forex providers and cached

### Example Request

```bash theme={null}
curl "https://api.mobula.io/api/2/token/details?blockchain=solana&address=...&currencies=EUR,USD"
```

### Example Response

```json theme={null}
{
  "data": {
    "priceUSD": 0.0234,
    "priceEUR": 0.0215,
    "marketCapUSD": 18720000,
    "marketCapEUR": 17181600,
    "volume24hUSD": 890000.50,
    "volume24hEUR": 816810.46
  }
}
```

### Affected Endpoints

* `GET /api/2/token/details`
* `POST /api/2/token/details`
* `GET /api/2/market/details`
* `POST /api/2/market/details`

<Note>
  Exchange rates are updated every 30 minutes and cached for optimal performance.
</Note>
