Blockchain.com · Schema
Fill
A single execution leg, including fees.
CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| execId | string | |
| orderId | integer | |
| symbol | string | |
| side | string | |
| price | number | |
| qty | number | |
| fee | number | |
| feeCurrency | string | |
| timestamp | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/exchange-fill-schema.json",
"title": "Fill",
"description": "A single execution leg, including fees.",
"type": "object",
"properties": {
"execId": {
"type": "string",
"example": "21745988181"
},
"orderId": {
"type": "integer",
"format": "int64"
},
"symbol": {
"type": "string",
"example": "BTC-USD"
},
"side": {
"type": "string",
"example": "buy"
},
"price": {
"type": "number",
"example": 72525.0
},
"qty": {
"type": "number",
"example": 0.5
},
"fee": {
"type": "number"
},
"feeCurrency": {
"type": "string",
"example": "BTC"
},
"timestamp": {
"type": "integer",
"format": "int64",
"example": 1748609400000
}
}
}