| 헤더 | 설명 |
|---|---|
Authorization | Bearer {JWT} 형식의 인증 토큰 |
orderCd)| 값 | 설명 |
|---|---|
TOTAL | 전체 |
PURCHASE | 매입 |
CLOSE_OUT | 청산 |
positionCd)| 값 | 설명 |
|---|---|
TOTAL | 전체 |
LONG | 매수 포지션 |
SHORT | 매도 포지션 |
nextKey — 초기 요청 시 빈 문자열, 이후 응답의 nextKey 값을 전송curl --location --request GET 'https://dev.your-api-server.com/execution/summary?orderStartDateTime=&orderEndDateTime=&orderCd=TOTAL&positionCd=TOTAL&nextKey='{
"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
}
]
}
}