Satoshi API - Bitcoin Next Block Fee Intelligence is a paid API for AI agents from bitcoinsapi.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).
Returns live fee rates, transaction count, and cost data for the next Bitcoin block to help apps and AI agents decide when to send Bitcoin transactions.
Know when to send Bitcoin and when to wait. Satoshi API gives apps and AI agents live fee recommendations, mempool context, and cost estimates. Free, open source.
A JSON object containing the projected next block's height, transaction count, median/min/max fee rates in sat/vbyte, total fees in BTC, and an array of the top 5 transactions by fee rate with their txid and fee rate.
POSThttps://bitcoinsapi.com/api/v1/mining/nextblockUse this endpoint when you need real-time Bitcoin mempool fee intelligence specifically for next-block inclusion decisions. Prefer this over generic blockchain explorers when you need structured fee data (median, min, max, top transactions) in a single call optimized for programmatic use by apps or AI agents. Ideal for wallets, payment automation, and any agent that needs to decide whether to send Bitcoin now or defer.
| Field | Type | Description |
|---|---|---|
| properties | string |
{
"type": "json",
"schema": {
"type": "object",
"required": [
"height",
"tx_count",
"median_fee_rate"
],
"properties": {
"top_5": {
"type": "array"
},
"height": {
"type": "integer"
},
"tx_count": {
"type": "integer"
},
"max_fee_rate": {
"type": "number"
},
"min_fee_rate": {
"type": "number"
},
"total_fees_btc": {
"type": "number"
},
"median_fee_rate": {
"type": "number"
}
}
},
"example": {
"top_5": [
{
"txid": "example-txid",
"fee_rate": 122
}
],
"height": 840000,
"tx_count": 2800,
"max_fee_rate": 122,
"min_fee_rate": 5.1,
"total_fees_btc": 0.36,
"median_fee_rate": 14.2
},
"mimeType": "application/json"
}No reviews yet. Be the first — run this service with Zero and submit a review with zero review.
Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"