v1

latestOpenAPI 3.0.12026-07-24510443.1 KB
주문(Order)

페어별 주문 가능 정보 조회

지정한 페어의 주문 가능 정보를 조회합니다.

get/orders/chance

Query parameters

marketstring required

조회하고자 하는 페어(거래쌍)

Example:KRW-BTC

Response

Object of order policy

bid_feestring required

매수 시 적용되는 수수료율

ask_feestring required

매도 시 적용되는 수수료율

maker_bid_feestring required

매수 maker 주문 수수료 비율

maker_ask_feestring required

매도 maker 주문 수수료 비율

Example response

[
  {
    "market": {
      "id": "KRW-BTC",
      "name": "BTC/KRW",
      "order_types": [
        "limit",
        "market"
      ],
      "order_sides": [
        "ask",
        "bid"
      ],
      "bid_types": [
        "best_fok",
        "limit"
      ],
      "ask_types": [
        "market",
        "limit_ioc"
      ],
      "bid": {
        "currency": "KRW",
        "price_unit": 1e-8,
        "min_total": "5000"
      },
      "ask": {
        "currency": "BTC",
        "price_unit": 1e-8,
        "min_total": "5000"
      },
      "max_total": "1000000000",
      "state": "active"
    },
    "bid_account": {
      "currency": "BTC",
      "unit_currency": "KRW"
    },
    "ask_account": {
      "currency": "BTC",
      "unit_currency": "KRW"
    }
  }
]