清單

請求應透過 GET 方法發送
get /v1/exchange-rate/{currency}/list 複製

要求

查詢參數

姓名定義
currency*貨幣代碼

定義

貨幣代碼

* - 必需參數

請求範例


curl https://api.cryptomus.com/v1/exchange-rate/ETH/list
複製

回覆

響應參數

姓名定義
from從貨幣
to至貨幣
course匯率

定義

從貨幣

定義

至貨幣

定義

匯率

回應範例


1{
2  "state": 0,
3  "result": [
4    {
5      "from": "ETH",
6      "to": "USD",
7      "course": "1228.45000000"
8    }
9  ]
10}
複製