---
title: "TWAP - 주문 내역 조회"
method: GET
path: "/twap"
---

# TWAP - 주문 내역 조회

`GET /twap`

TWAP 주문 목록을 조회합니다.

## Query parameters

- `market` string
- `uuids` string[]
- `state` 'progress' | 'done' | 'cancel'
- `next_key` string
- `limit` integer
- `order_by` 'asc' | 'desc'

## Headers

- `Authorization` string, required

## Response `200`

200

- object
  - `has_next` boolean — 다음 페이지 존재 여부
  - `next_key` string — 다음 페이지 조회를 위한 커서 값. `hasNext` 가 false 면 null. 형식) Base64 인코딩된 문자열
  - `orders` object[]
    - `uuid` string — TWAP 주문의 고유 ID. `algo_order_id`와 동일
    - `side` 'bid' | 'ask' — 주문 종류 - `bid`: 매수 - `ask`: 매도
    - `price` string — 주문 당시 화폐 가격
    - `state` string — 주문 상태
    - `market` string — 거래 대상 페어의 고유 심볼 예시) KRW-BTC
    - `created_at` string, date-time — 주문 생성 시각
    - `volume` string — 사용자가 입력한 주문 양
    - `finished_at` string, date-time — 주문 종료 시각. `done` 상태일 때 주문 종료 시각을 노출하며, `cancel` 상태일 때는 미노출합니다.
    - `total_order_count` integer — 주문 전체 건수
    - `total_trades_count` integer — 주문에 걸린 전체 체결 수
    - `progress_count` integer — 주문 진행 건수
    - `total_executed_amount` string — 주문 총 체결 금액
    - `total_executed_volume` string — 주문 총 체결 수량
    - `avg_trade_price` string — 주문 평균 체결 단가
    - `wallet_id` string — 지갑의 고유 ID
    - `canceled_at` string, date-time — 주문 취소 시각. `cancel` 상태일 때 취소 시각을 노출하며, `done` 상태일 때는 미노출합니다.
    - `cancel_type` 'user' | 'asset' | 'admin' | 'system' — 주문 취소 타입 - `user` : 사용자 취소 - `asset` : 자산 부족 - `admin` : 관리자 취소 - `system` : 시스템 취소

## Other responses

- `400` — 400

---

[API](https://skmtc.dev/bithumb/apis/open-api-public.md) · [All operations](https://skmtc.dev/bithumb/apis/open-api-public/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bithumb/open-api-public/revisions/9edc2d6e86db/schema)
