# Glassnode Short Term Holder MVRV (STH-MVRV)

> Glassnode Short Term Holder MVRV (STH-MVRV) 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-14).

Returns the Market Value to Realized Value ratio computed exclusively for Bitcoin UTXOs younger than 155 days, indicating short-term holder profitability and sentiment.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/market/mvrv_less_155
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-short-term-holder-mvrv-sth-mvrv-85f3fce0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R87c19luISdMKiVLfGIH3

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-short-term-holder-mvrv-sth-mvrv-85f3fce0
```

Example prompt: Pull the latest Glassnode Short Term Holder MVRV ratio for BTC so I can see whether short-term investors are currently in profit or underwater.

## When to prefer this

Use this endpoint when you specifically need the MVRV ratio segmented for short-term Bitcoin holders (UTXOs < 155 days), as opposed to aggregate MVRV or long-term holder MVRV. It is ideal for analyzing short-term market sentiment, identifying local tops/bottoms based on STH profitability, and building on-chain trading signals focused on recent market participants.

## Known failure modes

- Missing required 'a' query parameter (asset symbol) returns a 400 error
- Payment not included or insufficient USDC causes a 402 Payment Required response
- Requesting an unsupported asset other than BTC returns an error
- Unsupported interval or format enum value causes a validation error
- Network or upstream Glassnode data unavailability may return a 503 error

## How this service works

Short Term Holder MVRV — Short Term Holder MVRV (STH-MVRV) is the MVRV ratio computed using only UTXOs younger than 155 days, serving as an indicator of short-term investor behaviour. Data by Glassnode.

## Output

Returns a JSON array of time-series objects each containing a Unix timestamp (t) and the STH-MVRV ratio value (v), representing the MVRV computed only for Bitcoin UTXOs younger than 155 days, sampled at 24-hour intervals.

## 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"
       ],
       "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-short-term-holder-mvrv-sth-mvrv-85f3fce0/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)
