# Glassnode NVT Signal (NVTS)

> Glassnode NVT Signal (NVTS) 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 NVT Signal for a crypto asset — market cap divided by the 90-day moving average of daily on-chain transaction volume — as a smoothed valuation indicator.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/nvts
- 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-nvt-signal-nvts-383deb86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jspbvuWTnRt66eZ0jsnne

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-nvt-signal-nvts-383deb86
```

Example prompt: Pull the NVT Signal for BTC from Glassnode at daily resolution so I can see whether Bitcoin's network value is justified by its smoothed transaction volume right now.

## When to prefer this

Use this endpoint when you need a smoothed, noise-reduced version of the NVT Ratio that avoids day-to-day transaction volume spikes; prefer NVTS over raw NVT when assessing longer-term crypto valuation cycles or when comparing valuation across multiple time periods without short-term distortions.

## Known failure modes

- Missing required asset symbol 'a' parameter returns 400 error
- Unsupported asset symbol returns empty or error response
- Payment not settled causes 402 Payment Required response
- Invalid interval or format enum value returns 400 validation error
- Network not available for requested metric returns error or empty data

## How this service works

Network Value to Transactions Signal — NVT Signal (NVTS) is a modified version of the original NVT Ratio that uses a 90-day moving average of the daily transaction volume in the denominator instead of the raw daily transaction volume. Data by Glassnode.

## Output

An array of timestamped data points, each containing a Unix timestamp (t) and the NVT Signal value (v) representing market cap divided by the 90-day moving average of on-chain transaction volume for the requested asset.

## 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": {
       "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"
      },
      "network": {
       "enum": [
        "aggregated",
        "arb",
        "base",
        "eth",
        "opt"
       ],
       "type": "string",
       "description": "Network / blockchain identifier for cross-chain metrics"
      }
     }
    }
   },
   "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-nvt-signal-nvts-383deb86/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)
