# Glassnode Ethereum Transaction Type Breakdown (Relative)

> Glassnode Ethereum Transaction Type Breakdown (Relative) 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 relative share of Ethereum transactions broken down by category: Vanilla, ERC20, Stablecoins, DeFi, Bridges, NFTs, MEV Bots, and Other.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/transactions/tx_types_breakdown_relative
- 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-transaction-type-breakdown-relative-f22c53a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rcas1d6z66scE0oBtFw_X

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-transaction-type-breakdown-relative-f22c53a2
```

Example prompt: Pull the Glassnode relative transaction type breakdown for Ethereum — I want to see the current share of vanilla transfers, ERC20, stablecoins, DeFi, bridges, NFTs, and MEV bots as a percentage, in JSON format at 24h resolution.

## When to prefer this

Use this endpoint when you need a categorical breakdown of Ethereum on-chain activity by transaction type — specifically when you want relative/proportional shares rather than absolute counts. Prefer this over raw transaction count endpoints when analyzing the compositional shift of Ethereum usage across DeFi, NFTs, stablecoins, bridges, and MEV over time.

## Known failure modes

- Missing required 'a=ETH' query parameter returns 400 or validation error
- Unsupported interval or format enum value returns error
- Payment of $0.05 USDC not provided or rejected leads to 402 Payment Required
- Rate limiting or upstream Glassnode data unavailability returns 5xx
- Invalid or missing x402 payment header causes authentication failure

## How this service works

Ethereum Transaction Type Breakdown (Relative) — The relative share of Ethereum transactions by category: Vanilla (pure ETH transfers between EOAs), ERC20 (token calls, excluding stablecoins), Stablecoins (pegged tokens such as USDT, USDC, DAI), DeFi (protocols and DEXs like Uniswap and Aave), Bridges (cross-chain transfers), NFTs (ERC-721/1155 and marketplaces), MEV Bots, and Other. Data by Glassnode.

## Output

An array of timestamped data points, each containing an object ('o') with the relative share (0–1 or percentage) of each Ethereum transaction category: Vanilla, ERC20, Stablecoins, DeFi, Bridges, NFTs, MEV Bots, and Other. Covers the requested time interval at 24h 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": [
        "ETH"
       ],
       "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": {
       "o": {
        "type": "object"
       },
       "t": {
        "type": "number"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glassnode-ethereum-transaction-type-breakdown-relative-f22c53a2/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)
