Bithumb · Schema

Bithumb Spot Order

Schema for a Bithumb spot order object returned by order query endpoints.

CryptocurrencyExchangeTradingSouth KoreaKRWBitcoinMarket DataWebSocket

Properties

Name Type Description
orderId string Unique order identifier
symbol string Trading pair symbol (e.g. BTC-USDT)
price string Order price (limit orders)
tradedNum string Quantity that has been filled
quantity string Total order quantity
avgPrice string Average fill price
status string Current order status
type string Order type
side string Order side
createTime string Order creation time (Unix ms as string)
tradeTotal string Total traded value
View JSON Schema on GitHub

JSON Schema

order.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bithumb/main/json-schema/order.json",
  "title": "Bithumb Spot Order",
  "description": "Schema for a Bithumb spot order object returned by order query endpoints.",
  "type": "object",
  "properties": {
    "orderId": {
      "type": "string",
      "description": "Unique order identifier"
    },
    "symbol": {
      "type": "string",
      "description": "Trading pair symbol (e.g. BTC-USDT)"
    },
    "price": {
      "type": "string",
      "description": "Order price (limit orders)"
    },
    "tradedNum": {
      "type": "string",
      "description": "Quantity that has been filled"
    },
    "quantity": {
      "type": "string",
      "description": "Total order quantity"
    },
    "avgPrice": {
      "type": "string",
      "description": "Average fill price"
    },
    "status": {
      "type": "string",
      "enum": ["send", "pending", "success", "cancel"],
      "description": "Current order status"
    },
    "type": {
      "type": "string",
      "enum": ["market", "limit"],
      "description": "Order type"
    },
    "side": {
      "type": "string",
      "enum": ["buy", "sell"],
      "description": "Order side"
    },
    "createTime": {
      "type": "string",
      "description": "Order creation time (Unix ms as string)"
    },
    "tradeTotal": {
      "type": "string",
      "description": "Total traded value"
    }
  },
  "required": ["orderId", "symbol", "status", "type", "side"]
}