Order detailPrivate API
회원의 매수/매도 체결 내역 상세 정보를 제공합니다.
POST https://api.bithumb.com/info/order_detail
Example Response
{ "status" : "0000", "data" : [ { "transaction_date" : "1572497603668315", "type" : "bid", "order_status" : "Completed", "order_currency" : "BTC", "payment_currency" : "KRW", "order_price" : "8601000", "order_qty" : "0.007", "cancel_date" : "", "cancel_type" : "", "contract" :[ { "transaction_date" : "1572497603902030", "price" : "8601000", "units" : "0.005", "fee_currency" : "KRW", "fee" : "107.51", "total" : "43005" }, { "transaction_date" : "1572497603850325", "price" : "8600000", "units" : "0.002", "fee_currency" : "KRW", "fee" : "43", "total" : "17200" }, ] } ] }
Request Parameters
요청 변수 | 설명 | 타입 |
---|---|---|
apiKey | 사용자 API Key | String/필수 |
secretKey | 사용자 Secret Key | String/필수 |
order_id | 매수/매도 주문 등록된 주문번호 (입력 시 해당 데이터만 추출) |
String/필수 |
order_currency | 주문 통화 (코인) | String/필수 |
payment_currency | 결제 통화 (마켓) 기본값 : KRW |
String |
Response
필드 | 설명 | 타입 |
---|---|---|
status | 결과 상태 코드 (정상: 0000, 그 외 에러 코드 참조) | String |
order_date | 주문요청 시간 타임 스탬프 | Integer(String) |
type | 주문 요청 구분 (bid : 매수 ask : 매도) | String |
order_status | 주문 상태 | String |
order_currency | 주문 통화 (코인) | String |
payment_currency | 결제 통화 (마켓) | String |
order_price | 주문요청 호가 | Number(String) |
order_qty | 주문요청 수량 | Number(String) |
cancel_date | 취소 일자 타임스탬프 | Integer(String) |
cancel_type | 취소 유형 | String |
contract | 해당주문 체결정보 | Array[Object] |
transaction_date | 거래 체결 시간 타임 스탬프 (YYYY-MM-DD HH:MM:SS) |
Integer(String) |
price | 1Currency당 체결가 | Number (String) |
units | 거래수량 | Number (String) |
fee_currency | 수수료 통화 | String |
fee | 거래 수수료 | Number (String) |
total | 체결 금액 | Number (String) |