# Glassnode Ethereum Transaction Type Breakdown (Absolute Count)

> Glassnode Ethereum Transaction Type Breakdown (Absolute Count) 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 count of Ethereum transactions broken down by category: Vanilla ETH transfers, ERC20 tokens, Stablecoins, DeFi protocols, Bridges, NFTs, MEV Bots, and Other.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/transactions/tx_types_breakdown_count
- 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-absolute-count-3e831575
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FwwoMzAgyw3ybF_EbG8js

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-absolute-count-3e831575
```

Example prompt: Pull the Glassnode breakdown of Ethereum transaction types for today — I want to see the daily counts split across vanilla ETH transfers, ERC20, stablecoins, DeFi, bridges, NFTs, and MEV bots, returned as JSON.

## When to prefer this

Use this endpoint when you need a categorical breakdown of Ethereum on-chain transaction activity by type (DeFi, NFT, MEV, stablecoin, etc.) rather than aggregate totals. Prefer this over generic transaction count endpoints when the goal is to understand the composition or relative dominance of different Ethereum use cases over time.

## Known failure modes

- Missing required 'a=ETH' query parameter returns 400 or error response
- Unsupported asset symbol (only ETH is allowed) causes validation failure
- Invalid format parameter value returns error
- Payment not fulfilled (x402 payment required, 402 status if USDC not provided)
- Upstream Glassnode data unavailability causes 503 or empty response

## How this service works

Ethereum Transaction Type Breakdown (Absolute) — The number 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

A time-series array of objects where each entry has a Unix timestamp (t) and a nested object (o) containing absolute transaction counts for each Ethereum transaction category: Vanilla, ERC20, Stablecoins, DeFi, Bridges, NFTs, MEV Bots, and Other.

## 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"
      },
      "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-absolute-count-3e831575/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)
