# Glassnode Total Supply Last Active 10+ Years

> Glassnode Total Supply Last Active 10+ Years 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 circulating cryptocurrency supply that has not moved on-chain for more than 10 years.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/active_more_10y
- 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-supply-last-active-10-years-e8d5b271
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BUvouQekDzgqCgs3gzPWK

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-supply-last-active-10-years-e8d5b271
```

Example prompt: Can you pull the Glassnode metric for total BTC supply that hasn't moved in more than 10 years, denominated in native units and returned as JSON?

## When to prefer this

Use this endpoint when you need on-chain dormancy data specifically for coins inactive for more than 10 years — a key long-term holder and 'ancient supply' signal. Prefer this over shorter dormancy windows (1y, 2y, 5y) when researching truly long-dormant supply or macro HODLer conviction trends.

## Known failure modes

- Missing required asset symbol 'a' parameter returns a 400 error
- Unsupported asset symbol returns an error or empty dataset
- Invalid currency or interval enum value results in a 400 validation error
- Metric may not be available for all networks (only BTC-based chains typically support 10y+ dormancy)
- Payment failure or insufficient USDC balance blocks the request with a 402 response

## How this service works

Total Supply Last Active 10y — The total amount of circulating supply last moved more than 10 years ago. Data by Glassnode.

## Output

An array of time-series data points, each with a Unix timestamp (t) and the total supply value (v) representing the amount of coins last active more than 10 years ago, in the requested currency (native or USD).

## 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": {
       "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"
      },
      "network": {
       "enum": [
        "aggregated",
        "arb",
        "base",
        "eth",
        "opt"
       ],
       "type": "string",
       "description": "Network / blockchain identifier for cross-chain 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-supply-last-active-10-years-e8d5b271/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)
