# Glassnode LTH Supply Sum — Long-Term Holder Total Supply

> Glassnode LTH Supply Sum — Long-Term Holder Total Supply 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 amount of BTC circulating supply held by long-term holders (LTH) as a time series

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/lth_sum
- 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-lth-supply-sum-long-term-holder-total-supply-3faf6080
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yXKzhxlD50pXCbj8gWneA

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-lth-supply-sum-long-term-holder-total-supply-3faf6080
```

Example prompt: Pull the Glassnode long-term holder total supply metric for Bitcoin in native BTC units so I can see how much BTC long-term holders currently control.

## When to prefer this

Choose this endpoint when you need on-chain Bitcoin supply data specifically attributed to long-term holders (LTH), sourced from Glassnode's proprietary methodology. Prefer this over generic price or market cap APIs when the analysis requires understanding HODLer behavior, supply distribution, or conviction-based accumulation trends.

## Known failure modes

- Missing required 'a' (asset) parameter returns 400 error
- Unsupported asset symbol returns validation error
- Payment not included or insufficient USDC returns 402 Payment Required
- Invalid query parameter enum values (e.g. unsupported interval) return 400
- Rate limiting or network timeouts may return 429 or 503

## How this service works

Total Supply Held by Long-Term Holders — The total amount of circulating supply held by long-term holders. Data by Glassnode.

## Output

A time series array of objects, each with a Unix timestamp ('t') and a numeric value ('v') representing the total BTC supply held by long-term holders at that point in time. Data is returned in JSON format at 24h resolution.

## 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-lth-supply-sum-long-term-holder-total-supply-3faf6080/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)
