# Glassnode Seller Exhaustion Constant

> Glassnode Seller Exhaustion Constant 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 Seller Exhaustion Constant metric (product of Percent Supply in Profit × 30-day price volatility) for BTC or ETH to identify low-risk market bottoms.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/seller_exhaustion_constant
- 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-seller-exhaustion-constant-470eafa3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PvMeXOywl8KREMd_RijNZ

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-seller-exhaustion-constant-470eafa3
```

Example prompt: Pull the latest Seller Exhaustion Constant data for Bitcoin from Glassnode in JSON format so I can see if we're near a low-risk market bottom.

## When to prefer this

Use this endpoint when you need to identify potential cycle bottoms in Bitcoin or Ethereum markets by combining supply-in-profit dynamics with price volatility. It is ideal for on-chain macro analysis, risk assessment at market lows, or systematic bottom-detection strategies. Prefer this over generic price feeds when you need a composite exhaustion signal backed by Glassnode's proprietary on-chain data.

## Known failure modes

- Missing required asset parameter 'a' returns a 400 error
- Unsupported asset symbol (only BTC and ETH accepted) returns a validation error
- Payment not received or x402 payment header missing returns 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Glassnode data unavailable for the requested time range returns empty array or 404

## How this service works

Seller Exhaustion Constant — Seller Exhaustion Constant is the product of Percent Supply in Profit and 30-day price volatility, designed to detect low-risk bottoms. Data by Glassnode.

## Output

Returns a time-series array of objects, each with a Unix timestamp (t) and the Seller Exhaustion Constant value (v), representing the product of Percent Supply in Profit and 30-day price volatility for the requested asset at daily 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",
        "ETH"
       ],
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "c": {
       "enum": [
        "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-seller-exhaustion-constant-470eafa3/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)
