# Glassnode Miner Net Position Change (30-Day)

> Glassnode Miner Net Position Change (30-Day) 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 30-day change in BTC supply held in miner addresses, segmented by individual miner or aggregated across all miners.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/distribution/balance_miners_change
- 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-miner-net-position-change-30-day-73551eb9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cPdcqFEEiz2WJRanvZ60Q

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-miner-net-position-change-30-day-73551eb9
```

Example prompt: Pull the 30-day miner net position change for Bitcoin from Glassnode, aggregated across all miners, in USD denomination — I want to see if miners are net accumulating or distributing.

## When to prefer this

Use this endpoint when you need on-chain miner behavior data specifically measuring 30-day net supply changes, segmented by named mining pools (e.g. F2Pool, AntPool, ViaBTC) or aggregated. Prefer this over exchange flow metrics when the focus is miner selling/accumulation pressure rather than exchange inflows.

## Known failure modes

- Missing required 'a' parameter (asset symbol) returns a 400 error
- Invalid miner enum value returns a 400 validation error
- Unsupported currency or interval combination returns a 400 error
- Insufficient x402 payment or payment verification failure returns a 402 error
- Data not available for the requested time range returns empty array or 404

## How this service works

Miner Net Position Change — The 30-day change of the supply held in miner addresses. Data by Glassnode.

## Output

An array of timestamped data points, each containing a Unix timestamp (t) and a numeric value (v) representing the 30-day net change in BTC supply held by miner addresses for the specified miner or aggregation group.

## 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-miner-net-position-change-30-day-73551eb9/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)
