# Glassnode Total Supply Last Active 7y-10y

> Glassnode Total Supply Last Active 7y-10y 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 amount of circulating cryptocurrency supply that last moved on-chain between 7 and 10 years ago, as a time series.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/active_7y_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-7y-10y-d4c403de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VJAKrhvAH3aryMkDdCKsZ

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-7y-10y-d4c403de
```

Example prompt: Can you pull the Glassnode metric for how much BTC supply last moved between 7 and 10 years ago? Give me the data in JSON for the last 24h interval denominated in native units.

## When to prefer this

Use this endpoint when you need granular HODL wave data specifically for the 7-to-10-year coin age band — useful for analyzing long-term holder behavior, detecting potential supply unlocks from historically dormant coins, or building HODL wave visualizations. Prefer this over generic supply endpoints when the specific age cohort (7y-10y) is analytically important.

## Known failure modes

- Missing required 'a' (asset) query parameter returns a 400 or validation error
- Unsupported asset symbol returns empty data or error
- Network parameter mismatch for non-applicable assets returns no data
- Payment not processed (x402 payment required) returns 402 status
- Rate limiting or quota exceeded returns 429 error
- Invalid enum value for 'i', 'c', or 'f' parameters returns 400

## How this service works

Total Supply Last Active 7y-10y — The amount of circulating supply last moved between 7 years and 10 years ago. Data by Glassnode.

## Output

A time-series array of objects, each with a Unix timestamp ('t') and a numeric value ('v') representing the total circulating supply (in native or USD denomination) that last moved on-chain between 7 and 10 years prior to that date.

## 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-7y-10y-d4c403de/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)
