v1

latestOpenAPI 3.1.02026-07-26420360.1 KB

주문 가능 정보 조회

거래 대상 페어별 주문 가능 정보를 조회합니다.

get/orders/chance

Query parameters

marketstring required

거래 대상 페어의 고유 심볼

예시) KRW-BTC

Headers

Authorizationstring required

Authorization token (JWT)

Response

200

bid_feestring

매수 수수료 비율

ask_feestring

매도 수수료 비율

maker_bid_feestring

Maker 매수 수수료 비율

maker_ask_feestring

Maker 매도 수수료 비율

Example response

{
  "bid_fee": "0.0025",
  "ask_fee": "0.0025",
  "maker_bid_fee": "0.0025",
  "maker_ask_fee": "0.0025",
  "market": {
    "id": "BTC-ETH",
    "name": "ETH/BTC",
    "order_types": [
      "limit"
    ],
    "order_sides": [
      "ask"
    ],
    "bid_types": [
      "limit"
    ],
    "ask_types": [
      "limit"
    ],
    "bid": {
      "currency": "BTC",
      "price_unit": "0.00000001",
      "min_total": "0.0005"
    },
    "ask": {
      "currency": "ETH",
      "price_unit": "0.00000001",
      "min_total": "0.0005"
    },
    "max_total": "5",
    "state": "active"
  },
  "bid_account": {
    "currency": "BTC",
    "balance": "124.45372908",
    "locked": "0.0001",
    "avg_buy_price": "36341394",
    "unit_currency": "KRW"
  },
  "ask_account": {
    "currency": "ETH",
    "balance": "106993.5839313",
    "locked": "0",
    "avg_buy_price": "23993",
    "unit_currency": "KRW"
  }
}