# Glassnode BTC Supply Last Active 2+ Years Ago (Percent)

> Glassnode BTC Supply Last Active 2+ Years Ago (Percent) 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 percentage of Bitcoin's circulating supply that has not moved on-chain in at least 2 years, sampled at daily resolution.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/active_more_2y_percent
- 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-btc-supply-last-active-2-years-ago-percent-e71020cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XdGlQ3BHqMdS4SL2z61m9

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-btc-supply-last-active-2-years-ago-percent-e71020cd
```

Example prompt: What percentage of Bitcoin's circulating supply hasn't moved on-chain in at least 2 years? Pull the latest daily data from Glassnode.

## When to prefer this

Use this endpoint when you need Glassnode's authoritative on-chain metric specifically measuring the percentage of BTC supply dormant for 2+ years — ideal for gauging long-term holder conviction, supply illiquidity trends, or macro Bitcoin accumulation signals at daily granularity.

## Known failure modes

- Missing required 'a' query parameter (asset symbol) returns 400 error
- Requesting unsupported asset other than BTC returns validation error
- Payment not included or insufficient USDC balance triggers 402 Payment Required
- Network timeout or Glassnode data source unavailability returns 503
- Invalid format parameter returns parsing error

## How this service works

Percent of Supply Last Active 2+ Years Ago — The percent of circulating supply that has not moved in at least 2 years. Data by Glassnode.

## Output

An array of timestamped data points (Unix timestamp 't' and value 'v') representing the daily percentage of BTC circulating supply that has been inactive for 2 or more years, sourced from Glassnode's on-chain analytics.

## 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"
       ],
       "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"
      }
     }
    }
   },
   "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-btc-supply-last-active-2-years-ago-percent-e71020cd/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)
