# Glassnode Ethereum Tips (Priority Fee) Metric

> Glassnode Ethereum Tips (Priority Fee) 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 historical time-series data on Ethereum validator tips (priority fees) paid by users to expedite transaction processing, at configurable time intervals.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/tips
- 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-ethereum-tips-priority-fee-metric-8654577b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ok8rWiQV6RWufKjSSDVv2

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-ethereum-tips-priority-fee-metric-8654577b
```

Example prompt: Pull the Glassnode Ethereum tips (priority fee) metric at weekly resolution in USD so I can see how much validators have been earning beyond the base fee.

## When to prefer this

Use this endpoint when you need on-chain Ethereum validator tip/priority fee time-series data sourced from Glassnode, especially for analyzing supplementary validator income trends, EIP-1559 fee dynamics, or comparing tip levels over different time horizons. Prefer over generic fee endpoints when you specifically need tips separated from base fees.

## Known failure modes

- Missing required 'a' query parameter (asset symbol) returns 400 error
- Invalid enum value for interval, currency, or format returns 400 error
- Payment not provided or invalid results in 402 Payment Required
- Asset symbol other than ETH not supported on this endpoint
- Rate limiting or upstream Glassnode data unavailability returns 5xx

## How this service works

Tips (Priority Fee) — Tips, also known as priority fees, are fees paid by users on Ethereum to expedite their transactions, rewarding validators for prioritizing them. This metric captures the supplementary income received by validators beyond the base fee for ensuring timely transaction processing. Data by Glassnode.

## Output

An array of time-series objects, each containing a Unix timestamp ('t') and the corresponding tip/priority fee value ('v') for Ethereum, denominated in the requested currency and at the requested resolution (24h, 1w, or 1month). Format is JSON by default.

## 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": [
        "ETH"
       ],
       "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": [
        "1month",
        "1w",
        "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-ethereum-tips-priority-fee-metric-8654577b/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)
