# Glassnode Adjusted Circulating Supply (x402)

> Glassnode Adjusted Circulating Supply (x402) 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 adjusted circulating supply of BTC with an estimate of lost coins removed, as a time series.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/current_adjusted
- 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-adjusted-circulating-supply-x402-3cdc5375
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f3rL9CfCXNQoLdaCkLVu7

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-adjusted-circulating-supply-x402-3cdc5375
```

Example prompt: What is Bitcoin's current adjusted circulating supply according to Glassnode — I want the native BTC amount with lost coins excluded, in JSON format for a 24-hour interval?

## When to prefer this

Use this endpoint when you need a more accurate measure of Bitcoin's effective supply by removing estimated lost coins from the raw circulating supply — particularly useful for valuation models, stock-to-flow calculations, or on-chain analysis that requires a realistic supply figure. Prefer this over raw circulating supply endpoints when building scarcity metrics or evaluating true liquid supply.

## Known failure modes

- Missing required 'a' query parameter (asset symbol) returns a 400 error
- Unsupported asset symbol (non-BTC) returns a validation error since only BTC is currently supported
- Payment not provided or insufficient USDC balance triggers a 402 Payment Required response
- Invalid interval or format enum values return a 400 bad request
- Rate limiting or quota exhaustion may return a 429 error

## How this service works

Adjusted Circulating Supply — Adjusted Circulating Supply is the circulating supply with an estimate of lost coins removed. Data by Glassnode.

## Output

An array of time-series data points, each containing a Unix timestamp (t) and a numeric value (v) representing the adjusted circulating supply of BTC (with estimated lost coins removed) for the requested interval and denomination.

## 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-adjusted-circulating-supply-x402-3cdc5375/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)
