get https://api.inexcoin.com/v1/orders//
단일 주문에 대한 상태 조회
Resonse
필드 | 설명 | 타입 |
---|---|---|
uuid | 고유 uuid 주문번호 | String |
side | BUY 매수, SELL 매도 | String |
price | 가격 | String |
volume | 수량 | String |
dealVolume | 체결 수량 | String |
avgPrice | 거래 평균가 | String |
status | 상태 0 초기, 1 신규, 2 전량 체결, 3 부분 체결, 4 취소됨, 5 취소 대기 중, 6 만료 | Integer |
type | 유형 1:지정가, 2:시장가 | Integer |
createdAt | 주문생성시간 | String |
응답
{
"success": true,
"code": 0,
"message": "Operation succeeded.",
"data": {
"uuid": "string",
"side": "string", // BUY 매수, SELL 매도
"price": "string", // 가격
"volume": "string", // 수량
"dealVolume": "string", // 체결수량
"avgPrice": "string", // 거래평균가
"status": 0, // 상태 0 초기, 1 신규, 2 전량 체결, 3 부분 체결, 4 취소됨, 5 취소 대기 중, 6 만료
"type": 1, // 유형 1:지정가, 2:시장가
"createdAt": "yyyy-MM-dd HH:mm:ss" // 생성시간
}
}