Blockchain.com · JSON Structure

Exchange Trade Structure

A filled order or partial fill.

Type: object Properties: 8
CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Trade is a JSON Structure definition published by Blockchain.com, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

exOrdId clOrdId symbol side price qty fee timestamp

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-structure/exchange-trade-structure.json",
  "name": "Trade",
  "description": "A filled order or partial fill.",
  "type": "object",
  "properties": {
    "exOrdId": {
      "type": "int64"
    },
    "clOrdId": {
      "type": "string",
      "example": "21745988181"
    },
    "symbol": {
      "type": "string",
      "example": "BTC-USD"
    },
    "side": {
      "type": "string",
      "example": "buy"
    },
    "price": {
      "type": "double",
      "example": 72525.0
    },
    "qty": {
      "type": "double",
      "example": 0.5
    },
    "fee": {
      "type": "double"
    },
    "timestamp": {
      "type": "int64",
      "example": 1748609400000
    }
  }
}