# Glassnode Spent Volume Lifespan < 1h (SVL_1H)

> Glassnode Spent Volume Lifespan < 1h (SVL_1H) 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 on-chain transfer volume of Bitcoin coins that are younger than one hour old, sampled at daily resolution.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/svl_1h
- 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-1h-svl-1h-6593f2be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3-vqMVB38B9Kpnz3F_a_r

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-1h-svl-1h-6593f2be
```

Example prompt: Can you pull the Glassnode spent volume lifespan under 1 hour metric for BTC in USD at daily resolution and give me the latest data points in JSON?

## When to prefer this

Use this endpoint when you need time-series data specifically about Bitcoin coins that were spent within one hour of being received, which is a key on-chain indicator of short-term speculative activity or hot wallet behavior. Prefer this over general volume metrics when distinguishing freshly moved coins from older held coins matters for your analysis. Ideal for on-chain analysts building dashboards, trading signals, or market research workflows requiring Glassnode's SVL_1H indicator.

## Known failure modes

- Missing required 'a' (asset) parameter returns a 400 or 422 validation error
- Invalid asset symbol (not 'BTC') returns an error as only BTC is currently supported
- Invalid currency or format enum value returns a validation error
- Payment not provided or insufficient USDC balance results in 402 Payment Required
- Rate limiting or quota exceeded returns a 429 Too Many Requests
- Glassnode data unavailable for the requested interval returns empty or partial data

## How this service works

Spent Volume Lifespan < 1h — The total transfer volume of coins younger than one hour. Data by Glassnode.

## Output

Returns a JSON array of timestamped data points, each containing a Unix timestamp ('t') and the corresponding total transfer volume ('v') of Bitcoin coins younger than one hour, expressed in the requested currency (native BTC or USD) at daily granularity.

## 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-1h-svl-1h-6593f2be/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)
