# Glassnode Realized Profit Metric

> Glassnode Realized Profit Metric 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 daily realized profit in USD for all on-chain moved coins whose last-movement price was lower than the current movement price, for a given crypto asset.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/realized_profit
- 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-realized-profit-metric-a433508a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LJpLM316fQl9DRAxrpJ8X

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-realized-profit-metric-a433508a
```

Example prompt: Pull the Glassnode realized profit metric for BTC in USD for the last 24h interval — I want to see how much profit is being realized on-chain right now.

## When to prefer this

Use this endpoint when you need precise on-chain realized profit data sourced from Glassnode's blockchain analytics, specifically for tracking how much USD profit has been crystallized by coin movements across Bitcoin, Ethereum, or other supported networks on a daily basis. Prefer this over generic price APIs when you need UTXO-level profitability analysis.

## Known failure modes

- Missing required asset symbol 'a' parameter returns 400 error
- Unsupported asset symbol returns error or empty data
- Invalid interval or network enum value returns validation error
- Payment not completed (402 Payment Required) if x402 micropayment not processed
- Rate limiting or quota exceeded returns 429 error
- Network or connectivity issues return 5xx errors

## How this service works

Realized Profit — Realized Profit is the total profit (USD value) of all moved coins whose price at their last movement was lower than the price at the current movement. Data by Glassnode.

## Output

A time-series array of objects each containing a Unix timestamp ('t') and realized profit value in USD ('v'), representing total profit from moved coins whose cost basis was below the movement price.

## 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": [
        "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"
      },
      "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-realized-profit-metric-a433508a/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)
