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

# Supported Fiat Currencies

> Retrieve the list of fiat currencies supported by the platform.

### Endpoint

**GET** `/v1/common/supportedCurrencies`

### Request Parameters

| Parameter     | Type   | Required | Description                       |
| ------------- | ------ | -------- | --------------------------------- |
| **timestamp** | `Long` | Yes      | UNIX timestamp (in milliseconds). |

### Response Parameters

| Parameter    | Type     | Required | Description                   |
| ------------ | -------- | -------- | ----------------------------- |
| **currency** | `String` | Yes      | Abbreviation of the currency. |
| **fullName** | `String` | Yes      | Full name of the currency.    |
| **symbol**   | `String` | Yes      | Currency symbol.              |

### Response Example

```json theme={null}
{
    "code": 200,
    "msg": "success",
    "timestamp": "1725853044217",
    "data": [
        {
            "currency": "USD",
            "fullName": "United States Dollar",
            "symbol": "$"
        },
        {
            "currency": "JPY",
            "fullName": "Japanese Yen",
            "symbol": "¥"
        },
        {
            "currency": "EUR",
            "fullName": "Euro",
            "symbol": "€"
        }
    ]
}
```
