Transaction History Public API

COINIBT 거래소 가상자산 거래 체결 완료 내역을 제공합니다.

GET https://www.coinibt.io/api/public-api/transaction-history/{order_currency}_{payment_currency}

{order_currency} = 주문 통화(코인), 기본값 :CTC

{payment_currency} = 결제 통화(마켓), 입력값 : KRW, 기본값 : KRW

Example Response

{
  "status" : "200",
  "message": "success",
  "data" : [
  {
    "timestamp" : "1619578283",
    "type" : "bid",
    "amount" : "214.00",
    "price" : "810.00",
    "total" : "173340.00"
  },
  {
    "timestamp" : "1619576014",
    "type" : "ask",
    "amount" : "39.00",
    "price" : "810.00",
    "total" : "31590.00"
  }
 ]
}

Request Parameters

요청 변수 설명 타입
count 1~100 (코인별)
기본값 20
Integer
1~5(ALL) 기본값: 5

Response

필드 설명 타입
status 결과 상태 코드 (정상: 200, 그 외 에러 코드 참조) String
timestamp 타임스탬프 (거래 체결 시간) Integer(String)
type 거래 유형 (bid : 매수, ask : 매도) String
amount 거래량 Double
price 거래가 Double
total 총 거래 금액 Double