# Glassnode Spent Volume Lifespan 1d-1w (SVL_1D_1W)

> Glassnode Spent Volume Lifespan 1d-1w (SVL_1D_1W) 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 transfer volume of BTC coins that were last active between 1 day and 1 week ago, as a daily on-chain metric.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/svl_1d_1w
- 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-1d-1w-svl-1d-1w-79390ba7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5Hg6fPQ1jIJw58Wdt4Zmw

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-1d-1w-svl-1d-1w-79390ba7
```

Example prompt: Pull the Glassnode spent volume lifespan 1d-1w metric for Bitcoin in USD so I can see how much recently-active BTC (coins last moved 1 to 7 days ago) is being transferred on-chain right now.

## When to prefer this

Use this endpoint when you need to specifically analyze the on-chain transfer volume of Bitcoin coins that were last active between 1 and 7 days ago, as a short-term coin age cohort metric. This is ideal for understanding the behavior of recent market participants and short-term holder activity, distinct from longer lifespan cohorts. Choose this over general transaction volume metrics when coin age segmentation is important to your analysis.

## Known failure modes

- Missing required 'a' query parameter (asset symbol) returns a 400 error
- Unsupported asset symbol other than BTC returns an error
- Payment not provided or insufficient USDC causes a 402 Payment Required response
- Invalid format or interval enum value returns a validation error
- Rate limiting or quota exceeded returns a 429 error

## How this service works

Spent Volume Lifespan 1d-1w — The total transfer volume of coins that were last active between 1 day and 1 week ago. Data by Glassnode.

## Output

An array of time-series data points, each containing a Unix timestamp (t) and the total transfer volume (v) of coins last active between 1 day and 1 week ago, expressed in native BTC or USD depending on the currency parameter selected.

## 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-1d-1w-svl-1d-1w-79390ba7/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)
