# Glassnode NFT Gas Usage (Absolute) via x402

> Glassnode NFT Gas Usage (Absolute) via x402 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-15).

Returns the total amount of Ethereum network gas consumed by NFT-related transactions (ERC721, ERC1155, OpenSea, Blur, LooksRare, Rarible, SuperRare) over time.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/fees/gas_used_sum_nfts
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-nft-gas-usage-absolute-via-x402-00e36197
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x-7EH6P0B0DUNldmx4Wvv

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-nft-gas-usage-absolute-via-x402-00e36197
```

Example prompt: Pull me Glassnode's daily data on total Ethereum gas consumed by NFT transactions — including OpenSea and Blur — in JSON format for ETH using native currency units.

## When to prefer this

Use this endpoint when you need authoritative on-chain Ethereum gas consumption data specifically attributed to NFT activity, sourced from Glassnode's institutional-grade blockchain analytics. Prefer this over generic blockchain explorers when you need clean time-series data covering both NFT token standards (ERC721/ERC1155) and major NFT marketplaces in a single unified metric.

## Known failure modes

- Missing required query param 'a=ETH' returns 400 or empty response
- Unsupported interval or format enum value causes validation error
- Payment not processed (402) if USDC payment header is missing or insufficient
- Rate limiting if too many calls within a short window
- Data unavailable for very recent timestamps if indexing is delayed

## How this service works

Gas Usage by NFTs (Absolute) — The total amount of Ethereum network gas consumed by transactions interacting with non-fungible tokens. This category includes both NFT token contract standards (ERC721, ERC1155) and NFT marketplaces (OpenSea, Blur, LooksRare, Rarible, SuperRare) used to trade them. Data by Glassnode.

## Output

Returns a time-series array of objects, each with a Unix timestamp (t) and a nested object (o) containing the total gas consumed by NFT-related transactions on Ethereum for that time period, denominated in native gas units.

## 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-nft-gas-usage-absolute-via-x402-00e36197/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)
