v1

latestOpenAPI 3.1.02026-07-26420360.1 KB

개별 출금 조회

개별 출금 내역을 조회합니다.

get/withdraw

Query parameters

currencystring required

화폐 심볼

예시) BTC

uuidstring

출금의 고유 ID

txidstring

출금의 트랜잭션 ID

Headers

Authorizationstring required

Authorization token (JWT)

Response

200

typestring

입출금 종류

uuidstring

출금의 고유 ID

currencystring

화폐 심볼

예시) BTC

net_typestring

출금 네트워크

txidstring

출금의 트랜잭션 ID

state'PROCESSING' | 'DONE' | 'CANCELLED'

출금 상태

  • PROCESSING: 처리 중
  • DONE: 완료
  • CANCELLED: 취소됨
created_atstring date-time

출금 생성 시각

done_atstring date-time

출금 완료 시각

amountstring

출금 금액/수량

feestring

출금 수수료

transaction_typestring

출금 유형

  • default: 일반출금

Example response

{
  "type": "withdraw",
  "uuid": "200359853",
  "currency": "MTL",
  "net_type": "MTL_ETH",
  "txid": "0x28d331ddca9fb3b5a413737b3062289db4995dfeaddb96c4d82abd591fe17a52",
  "state": "DONE",
  "created_at": "2024-06-28T15:13:10+09:00",
  "done_at": "2024-06-28T15:17:17+09:00",
  "amount": "0.6113",
  "fee": "0.1"
}