Orderbook Public API

요청 당시 COINIBT 거래소 가상자산 현재가 정보를 제공합니다.

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

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

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

Example Response

{
  "status" : "200",
  "message": "success",
  "data" : {
    "timestamp" : 1619577879,
    "total_ask_size" : "22,503,164.92",
    "total_bid_size" : "74,336,866.65",
    "asks" : [
    {
      "quantity" : "15089.00",
      "price" : "34.20"
    },
    {
      "quantity" : "4000.00",
      "price" : "34.10"
    }
  ],
    "bids" : [
    {
      "quantity" : "42070.00",
      "price" : "29.00"
    },
    {
      "quantity" : "2050.00",
      "price" : "28.71"
    }
   ]
  }
}

Request Parameters

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

Response

필드 설명 타입
status 결과 상태 코드 (정상: 200, 그 외 에러 코드 참조) String
timestamp 타임 스탬프 Integer(String)
total_ask_size 매도 총 잔량 Double
total_bid_size 매수 총 잔량 Double
asks 매도 요청 내역 Array[Object]
bids 매수 요청 내역 Array[Object]
quantity Currency 수량 Double
price Currency 거래가 Double