---
title: "개별 출금 조회"
method: GET
path: "/withdraw"
tags: ["출금(Withdrawal)"]
---

# 개별 출금 조회

`GET /withdraw`

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

## Query parameters

- `uuid` string — 조회하고자 하는 출금의 유일식별자(UUID) uuid와 txid를 모두 입력하지 않는 경우 최신 출금 정보가 반환됩니다.
- `txid` string — 조회하고자 하는 출금의 트랜잭션 ID. uuid와 txid를 모두 입력하지 않는 경우 최신 출금 정보가 반환됩니다.
- `currency` string — 조회하고자 하는 통화 코드. 통화 코드로 조회 대상을 한정하기 위한 필터 파라미터입니다. 미입력시 최신 출금 내역이 조회됩니다.

## Response `200`

Object of withdrawal

- object
  - `type` string, required — 입출금 종류
  - `uuid` string, required — 출금의 유일 식별자
  - `currency` string, required — 조회하고자 하는 통화 코드
  - `net_type` string — 출금 네트워크 유형. 업비트에서 사용하는 블록체인 네트워크 구분자입니다. 원화(KRW) 출금의 경우 null로 반환됩니다. [예시] "ETH", "TRX", "SOL"
  - `txid` string, nullable, required — 트랜잭션 ID
  - `state` 'WAITING' | 'PROCESSING' | 'DONE' | 'FAILED' | 'CANCELLED' | 'REJECTED', required — 출금 처리 상태 - `WAITING`: 대기 중 - `PROCESSING`: 처리 중 - `DONE`: 완료 - `FAILED`: 실패 - `CANCELLED`: 취소됨 - `REJECTED`: 거절됨
  - `created_at` string, required — 출금 생성 시간
  - `done_at` string, nullable — 출금 완료 시간. 출금이 완료되지 않은 경우 null로 반환됩니다
  - `amount` string, required — 출금하고자 하는 자산의 수량
  - `fee` string, required — 출금 수수료
  - `transaction_type` 'default' | 'internal', required — 출금 유형. 사용 가능한 값은 다음과 같습니다. * `default`: 일반출금 * `internal`: 바로출금
  - `is_cancelable` boolean, required — 출금 취소 가능 여부

## Other responses

- `404` — error object

---

[API](https://skmtc.net/upbit/apis/quotation-api.md) · [All operations](https://skmtc.net/upbit/apis/quotation-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/upbit/quotation-api/versions/b8bd8b9ed3b5/schema)
