接口地址

GET /v1/common/supportedCurrencies

请求参数

参数类型必须描述
timestampLongunix时间戳(毫秒)

响应参数

参数类型必须描述
currencyString法定货币简称
fullNameString全称
symbolString货币符号

响应示例

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