v1

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

개별 출금 조회

최신 단일 출금 정보를 조회합니다. 특정 출금 정보를 조회하고자 하는 경우 출금의 UUID 또는 트랜잭션 ID(TXID)로 지정할 수 있습니다.

get/withdraw

Query parameters

uuidstring

조회하고자 하는 출금의 유일식별자(UUID) uuid와 txid를 모두 입력하지 않는 경우 최신 출금 정보가 반환됩니다.

Example:9ca023a5-851b-4fec-9f0a-48cd83c2eaae
txidstring

조회하고자 하는 출금의 트랜잭션 ID. uuid와 txid를 모두 입력하지 않는 경우 최신 출금 정보가 반환됩니다.

Example:98c15999f0bdc4ae0e8a-ed35868bb0c204fe6ec29e4058a3451e-88636d1040f4baddf943274ce37cf9cc
currencystring

조회하고자 하는 통화 코드. 통화 코드로 조회 대상을 한정하기 위한 필터 파라미터입니다. 미입력시 최신 출금 내역이 조회됩니다.

Example:KRW

Response

Object of withdrawal

typestring required

입출금 종류

uuidstring required

출금의 유일 식별자

currencystring required

조회하고자 하는 통화 코드

net_typestring

출금 네트워크 유형. 업비트에서 사용하는 블록체인 네트워크 구분자입니다. 원화(KRW) 출금의 경우 null로 반환됩니다.

[예시] "ETH", "TRX", "SOL"

txidstring nullable required

트랜잭션 ID

state'WAITING' | 'PROCESSING' | 'DONE' | 'FAILED' | 'CANCELLED' | 'REJECTED' required

출금 처리 상태

  • WAITING: 대기 중
  • PROCESSING: 처리 중
  • DONE: 완료
  • FAILED: 실패
  • CANCELLED: 취소됨
  • REJECTED: 거절됨
created_atstring required

출금 생성 시간

done_atstring nullable

출금 완료 시간. 출금이 완료되지 않은 경우 null로 반환됩니다

amountstring required

출금하고자 하는 자산의 수량

feestring required

출금 수수료

transaction_type'default' | 'internal' required

출금 유형. 사용 가능한 값은 다음과 같습니다.

  • default: 일반출금
  • internal: 바로출금
is_cancelableboolean required

출금 취소 가능 여부

Example response

{
  "type": "withdraw",
  "uuid": "9f432943-54e0-40b7-825f-b6fec8b42b79",
  "currency": "BTC",
  "net_type": "BTC",
  "state": "WAITING",
  "created_at": "2024-01-01T00:00:00",
  "done_at": "2024-01-01T00:00:00",
  "amount": "0.01",
  "transaction_type": "default"
}