Blockchain.com · Schema
Stats
Real-time blockchain statistics snapshot.
CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| market_price_usd | number | BTC price in USD. |
| hash_rate | number | Network hash rate (GH/s). |
| total_fees_btc | integer | Total fees in Satoshi over the period. |
| n_btc_mined | integer | New BTC mined over the period (Satoshi). |
| n_tx | integer | Number of transactions over the period. |
| n_blocks_mined | integer | Number of blocks mined over the period. |
| minutes_between_blocks | number | Average minutes between blocks. |
| totalbc | integer | Total Bitcoins in circulation (Satoshi). |
| n_blocks_total | integer | Chain height. |
| estimated_transaction_volume_usd | number | Estimated transaction volume in USD over the period. |
| miners_revenue_usd | number | Miners revenue in USD over the period. |
| miners_revenue_btc | integer | Miners revenue in Satoshi over the period. |
| difficulty | number | Current difficulty target. |
| estimated_btc_sent | integer | Estimated BTC sent (Satoshi). |
| total_btc_sent | integer | Total BTC sent (Satoshi). |
| trade_volume_btc | number | Trading volume in BTC. |
| trade_volume_usd | number | Trading volume in USD. |
| nextretarget | integer | Block height of the next difficulty retarget. |
| timestamp | integer | Unix timestamp of the snapshot. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/charts-stats-stats-schema.json",
"title": "Stats",
"description": "Real-time blockchain statistics snapshot.",
"type": "object",
"properties": {
"market_price_usd": {
"type": "number",
"description": "BTC price in USD.",
"example": 72525.0
},
"hash_rate": {
"type": "number",
"description": "Network hash rate (GH/s).",
"example": 72525.0
},
"total_fees_btc": {
"type": "integer",
"format": "int64",
"description": "Total fees in Satoshi over the period.",
"example": 1
},
"n_btc_mined": {
"type": "integer",
"format": "int64",
"description": "New BTC mined over the period (Satoshi).",
"example": 1
},
"n_tx": {
"type": "integer",
"description": "Number of transactions over the period.",
"example": 1
},
"n_blocks_mined": {
"type": "integer",
"description": "Number of blocks mined over the period.",
"example": 1
},
"minutes_between_blocks": {
"type": "number",
"description": "Average minutes between blocks.",
"example": 1.0
},
"totalbc": {
"type": "integer",
"format": "int64",
"description": "Total Bitcoins in circulation (Satoshi).",
"example": 1
},
"n_blocks_total": {
"type": "integer",
"description": "Chain height.",
"example": 1
},
"estimated_transaction_volume_usd": {
"type": "number",
"description": "Estimated transaction volume in USD over the period.",
"example": 0.5
},
"miners_revenue_usd": {
"type": "number",
"description": "Miners revenue in USD over the period.",
"example": 1.0
},
"miners_revenue_btc": {
"type": "integer",
"format": "int64",
"description": "Miners revenue in Satoshi over the period.",
"example": 1
},
"difficulty": {
"type": "number",
"description": "Current difficulty target.",
"example": 1.0
},
"estimated_btc_sent": {
"type": "integer",
"format": "int64",
"description": "Estimated BTC sent (Satoshi).",
"example": 1
},
"total_btc_sent": {
"type": "integer",
"format": "int64",
"description": "Total BTC sent (Satoshi).",
"example": 1
},
"trade_volume_btc": {
"type": "number",
"description": "Trading volume in BTC.",
"example": 0.5
},
"trade_volume_usd": {
"type": "number",
"description": "Trading volume in USD.",
"example": 0.5
},
"nextretarget": {
"type": "integer",
"description": "Block height of the next difficulty retarget.",
"example": 1
},
"timestamp": {
"type": "integer",
"format": "int64",
"description": "Unix timestamp of the snapshot.",
"example": 1748609400000
}
}
}