Skip to main content

Endpoint

GET /v1/common/supportedCurrencies

Request Parameters

ParameterTypeRequiredDescription
timestampLongYesUNIX timestamp (in milliseconds).

Response Parameters

ParameterTypeRequiredDescription
currencyStringYesAbbreviation of the currency.
fullNameStringYesFull name of the currency.
symbolStringYesCurrency 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": "€"
        }
    ]
}