v1

latestOpenAPI 3.0.12026-07-24510443.1 KB
출금(Withdrawal)

출금 가능 정보 조회

지정한 통화에 대한 출금 가능 정보를 조회합니다. 해당 통화의 출금 정책과 사용자 잔고를 확인할 수 있습니다.

get/withdraws/chance

Query parameters

currencystring required

출금 가능 정보를 조회하고자 하는 통화 코드

Example:BTC
net_typestring

디지털 자산 입출금에 사용되는 블록체인 네트워크 식별자. 출금 주소 등록 후 출금 허용 주소 목록 조회 API를 호출하여 응답에서 각 주소로의 출금시 사용 가능한 “net_type” 값을 확인할 수 있습니다. 디지털 자산인 경우 필수(required) 필드입니다.

Example:BTC

Response

Object of withdrawal policy

Example response

{
  "member_level": {
    "security_level": 4,
    "email_verified": true,
    "identity_auth_verified": true,
    "bank_account_verified": true,
    "two_factor_auth_verified": true,
    "locked": true,
    "wallet_locked": true
  },
  "currency": {
    "code": "BTC",
    "is_coin": true,
    "wallet_state": "working",
    "wallet_support": [
      "deposit",
      "withdraw"
    ]
  },
  "account": {
    "currency": "BTC",
    "unit_currency": "KRW"
  },
  "withdraw_limit": {
    "currency": "BTC",
    "fiat_currency": "KRW",
    "fixed": 6,
    "can_withdraw": true
  }
}