コンテンツにスキップ

対応通貨リスト

エンドポイント: /v1/wallet/currencies

リクエスト認証

いいえ

リクエストメソッド: GET

Bash
curl -X GET "https://oapi.websea.com/v1/wallet/currencies"

レスポンスパラメータ

パラメータ名 必須 説明
errno はい int 0 ステータスコード
errmsg はい string success ステータスメッセージ
result はい list 例を参照 リスト

result パラメータの説明

パラメータ名 必須 説明
chain はい string bitcoin ネットワーク名
withdrawEnable はい string true 出金可能かどうか
depositEnable はい string true 入金可能かどうか

レスポンス例

JSON
{
  "errno": 0,
  "errmsg": "success",
  "result": {
    "BTC": [
      {
        "chain": "BTC",
        "withdrawEnable": false,
        "depositEnable": false
      }
    ],
    "ETH": [
      {
        "chain": "ERC20",
        "withdrawEnable": true,
        "depositEnable": true
      }
    ],
    "USDT": [
      {
        "chain": "ERC20",
        "withdrawEnable": true,
        "depositEnable": true
      },
      {
        "chain": "TRC20",
        "withdrawEnable": true,
        "depositEnable": true
      },
      {
        "chain": "BEP20",
        "withdrawEnable": false,
        "depositEnable": false
      }
    ]
  }
}