MODA API Docs
GuidesAPI Reference
GuidesAPI Reference
  1. Execution
  • Order
    • 신규주문
      POST
    • TP/SL 주문
      POST
    • 정정주문
      POST
    • 청산주문
      POST
    • 취소주문
      POST
  • Trade
    • 청산 내역 조회
      GET
    • 주문내역 조회
      GET
    • 청산손익 조회
      GET
  • Stock
    • 주문 정보 조회
      GET
    • 스프레드 그룹 조회
      GET
    • 보유종목 조회
      GET
    • 주문잔고 조회
      GET
    • 주문종목 조회
      GET
  • Quote
    • 5단계 호가 조회
      GET
    • 틱 차트 데이터 조회
      GET
    • 일별 OHLC 데이터 조회
      GET
    • 캔들 차트 데이터 조회
      GET
  • Execution
    • 주문 체결 합계 조회
      GET
    • 미체결 내역 조회
      GET
    • 주문 체결 내역 조회
      GET
  • Asset
    • 보유 포지션 조회
      GET
    • 포지션증거금 조회
      GET
    • 주문증거금 조회
      GET
  • Account
    • 예탁자산 조회
    • 예수금/출금가능금액 조회
  1. Execution

주문 체결 합계 조회

GET
/execution/summary
기간별 주문 체결 합계를 종목 단위로 조회합니다. 매수/전매/매도/환매별 체결수량과 체결금액을 집계합니다.

인증 헤더#

헤더설명
AuthorizationBearer {JWT} 형식의 인증 토큰

주문구분코드 (orderCd)#

값설명
TOTAL전체
PURCHASE매입
CLOSE_OUT청산

포지션구분코드 (positionCd)#

값설명
TOTAL전체
LONG매수 포지션
SHORT매도 포지션

페이징#

nextKey — 초기 요청 시 빈 문자열, 이후 응답의 nextKey 값을 전송

요청

쿼리 파라미터

응답

🟢200
application/json
OK
본문

🟠400
요청요청 예시
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://dev.your-api-server.com/execution/summary?orderStartDateTime=&orderEndDateTime=&orderCd=TOTAL&positionCd=TOTAL&nextKey='
응답응답 예시
200 - 예시 1
{
    "status": "success",
    "code": 200,
    "data": {
        "nextKey": "string",
        "summary": [
            {
                "stockCd": "string",
                "longExecutionQuantity": 0,
                "longExecutionPrice": 0,
                "reShortExecutionQuantity": 0,
                "reShortExecutionPrice": 0,
                "shortExecutionQuantity": 0,
                "shortExecutionPrice": 0,
                "reLongExecutionQuantity": 0,
                "reLongExecutionPrice": 0
            }
        ]
    }
}
수정일 2026-03-26 08:43:48
이전
캔들 차트 데이터 조회
다음
미체결 내역 조회
Built with