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
{
"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": "€"
}
]
}