# Glassnode Spent Volume Lifespan 2y-3y (SVL_2Y_3Y)

> Glassnode Spent Volume Lifespan 2y-3y (SVL_2Y_3Y) 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 daily total transfer volume of Bitcoin coins that were last active between 2 and 3 years ago, a UTXO-age-band lifespan metric.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/svl_2y_3y
- 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-spent-volume-lifespan-2y-3y-svl-2y-3y-2a52d707
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4Q0dvijCjZ9zjPas8zC_f

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-spent-volume-lifespan-2y-3y-svl-2y-3y-2a52d707
```

Example prompt: Pull the Glassnode spent volume lifespan 2y-3y metric for BTC in USD for the last 24h interval — I want to see how much Bitcoin that was last active 2 to 3 years ago has been transferred recently.

## When to prefer this

Use this endpoint when you need to specifically track the spending behavior of Bitcoin that was last active between 2 and 3 years ago — a key cohort for identifying long-term holder conviction shifts and potential sell pressure from experienced holders. Prefer this over generic transaction volume endpoints when UTXO age band segmentation is critical to your analysis.

## Known failure modes

- Missing required 'a' (asset) query parameter returns a 400 error
- Unsupported asset symbol (only BTC is supported) returns an enum validation error
- Payment not included or insufficient USDC balance triggers a 402 Payment Required response
- Invalid interval or format enum values result in a 400 bad request
- Network or upstream Glassnode data unavailability may return a 503 error

## How this service works

Spent Volume Lifespan 2y-3y — The total transfer volume of coins that were last active between 2y and 3y ago. Data by Glassnode.

## Output

Returns a time-series array of objects, each containing a Unix timestamp (t) and a value (v) representing the total transfer volume (in native BTC or USD) of coins whose last on-chain activity was between 2 and 3 years prior to the observed 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": {
       "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"
      }
     }
    }
   },
   "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-spent-volume-lifespan-2y-3y-svl-2y-3y-2a52d707/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)
