v1
latestOpenAPI 3.0.12026-07-24510443.1 KB주문(Order)
id로 주문 목록 조회
UUID 또는 Identifier 목록으로 주문을 조회합니다.
get/orders/uuids
Query parameters
marketstring
조회하고자 하는 페어(거래쌍)
Example:KRW-BTC
uuids[]string[]
조회하고자 하는 주문의 UUID 목록. 조회 가능한 최대 주문 개수는 100개입니다. 2개 이상의 UUID로 조회하는 경우 쿼리 파라미터를 다음과 같이 요청합니다.
[예시] uuids[]=uuid1&uuids[]=uuid2…
[ "9ca023a5-851b-4fec-9f0a-48cd83c2eaae" ]
identifiers[]string[]
조회하고자 하는 주문의 클라이언트 지정 식별자 목록. 조회 가능한 최대 주문 개수는 100개입니다. 2개 이상의 identifiers로 조회하는 경우 쿼리 파라미터를 다음과 같이 요청합니다.
[예시] identifiers[]=id1&identifiers[]=id2…
[ "9ca023a5-851b-4fec-9f0a-48cd83c2eaae" ]
order_by'asc' | 'desc'
결과 정렬 방식. 주문 생성 시각을 기준으로 설정한 방식에 따라 정렬된 주문 목록이 반환됩니다. 사용 가능한 값은 “desc”(내림차순, 최신 주문 순) 또는 “asc”(오름차순, 오래된 주문 순)입니다. 기본값은 “desc”입니다.
Example:desc
Response
List of orders
Example response
[
{
"market": "KRW-BTC",
"uuid": "9ca023a5-851b-4fec-9f0a-48cd83c2eaae",
"side": "ask",
"ord_type": "limit",
"state": "wait",
"created_at": "2025-06-25T15:42:25+09:00",
"time_in_force": "ioc",
"identifier": "9ca023a5-851b-4fec-9f0a-48cd83c2eaae",
"smp_type": "cancel_maker",
"trades_count": 1
}
]