v1

latestOpenAPI 3.1.02026-07-26420360.1 KB

대기 주문 목록 조회

체결 대기(wait) 또는 주문 대기(watch) 상태의 주문 목록을 조회합니다.

get/orders/pending

Query parameters

marketstring

거래 대상 페어의 고유 심볼

예시) KRW-BTC

state'wait' | 'watch'

주문 상태

  • wait: 체결 대기(default)
  • watch: 예약 주문 대기
limitinteger

조회할 주문 개수(max 100)

order_by'asc' | 'desc'

조회 결과 정렬 방식

  • asc: 오래된 주문 순
  • desc: 최신 주문 순(default)
next_keystring

이전 응답에서 반환된 next_key

Headers

Authorizationstring required

Authorization token (JWT)

Response

200

has_nextboolean required

다음 페이지 존재 여부

next_keystring nullable required

다음 페이지 조회 시 next_key 파라미터에 전달합니다. 다음 페이지가 없으면 null

Example response

{
  "data": [
    {
      "order_id": "C0101000007410714100",
      "side": "bid",
      "order_type": "limit",
      "price": "50000000.0",
      "state": "wait",
      "market": "KRW-BTC",
      "created_at": "2026-04-09T10:00:00.000+09:00",
      "volume": "0.001",
      "remaining_volume": "0.001",
      "reserved_fee": "25.0",
      "remaining_fee": "25.0",
      "paid_fee": "0.0",
      "locked": "50025.0",
      "executed_volume": "0.0",
      "executed_funds": "0.0"
    }
  ]
}