# Glassnode Total Miner Revenue from Block Rewards (volume_mined_sum)

> Glassnode Total Miner Revenue from Block Rewards (volume_mined_sum) is a paid API for AI agents from x402.glassnode.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the total amount of newly minted BTC coins paid to miners as block subsidies over a given time interval, optionally filtered by specific mining pool.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/mining/volume_mined_sum
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-total-miner-revenue-from-block-rewards-volume-mined-sum-6696c9ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f660pKaoZ1SdMwWN7gPHA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability glassnode-total-miner-revenue-from-block-rewards-volume-mined-sum-6696c9ad
```

Example prompt: Pull the total Bitcoin block reward volume mined for the last 24 hours from Glassnode, denominated in native BTC, for all miners aggregated — I want to see how much newly issued BTC went to miners today.

## When to prefer this

Use this endpoint when you need precise on-chain data about Bitcoin block subsidy issuance (not transaction fees) paid to miners, especially when you need to filter by specific mining pool or need Glassnode's curated, institutional-grade on-chain dataset. Prefer this over generic crypto APIs when accuracy of miner revenue decomposition (subsidy vs fees) matters.

## Known failure modes

- Missing required 'a' (asset) query parameter returns a 400 validation error
- Invalid enum value for 'miner', 'i', 'c', or 'f' parameters returns a 400 error
- Payment failure or insufficient USDC balance returns a 402 Payment Required
- Rate limiting or quota exceeded returns a 429 Too Many Requests
- Glassnode data unavailable for requested time range returns empty array or 404

## How this service works

Total Miner Revenue from Block Rewards — The total amount of newly minted coins paid to miners as the block subsidy. Data by Glassnode.

## Output

An array of time-series objects each containing a Unix timestamp ('t') and a numeric value ('v') representing the total amount of newly minted BTC coins paid out as block subsidies to miners for the specified interval and optional miner filter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "a"
     ],
     "properties": {
      "a": {
       "enum": [
        "BTC"
       ],
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "c": {
       "enum": [
        "native",
        "usd"
       ],
       "type": "string",
       "description": "Currency for denominated values, e.g. usd, native"
      },
      "f": {
       "enum": [
        "csv",
        "json"
       ],
       "type": "string",
       "description": "Response format: json or csv"
      },
      "i": {
       "enum": [
        "24h"
       ],
       "type": "string",
       "description": "Time interval / resolution, e.g. 24h, 1w, 1month"
      },
      "miner": {
       "enum": [
        "1THash&58COIN",
        "AntPool",
        "ArkPool",
        "BTC.TOP",
        "BTC.com",
        "BinancePool",
        "BitFury",
        "BitMinter",
        "Bixin",
        "DPool",
        "F2Pool",
        "FoundryUSAPool",
        "Genesis",
        "HuobiPool",
        "KuCoinPool",
        "Lubian.com",
        "LuxorTech",
        "MaraPool",
        "NovaBlock",
        "OKExPool",
        "Patoshi",
        "PegaPool",
        "Poolin",
        "SBICrypto",
        "SecPool",
        "SigmaPool",
        "SlushPool",
        "SpiderPool",
        "TerraPool",
        "UKRPool",
        "Ultimus",
        "ViaBTC",
        "aggregated",
        "other"
       ],
       "type": "string",
       "description": "Miner identifier for mining-related metrics"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "t": {
        "type": "number"
       },
       "v": {
        "type": "number"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glassnode-total-miner-revenue-from-block-rewards-volume-mined-sum-6696c9ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.glassnode.com](https://www.zero.xyz/host/x402.glassnode.com/llms.txt)
