# Glassnode NFT Gas Usage Share (Relative) — Ethereum

> Glassnode NFT Gas Usage Share (Relative) — Ethereum 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-16).

Returns the share of total Ethereum gas consumed by NFT-related transactions (ERC-721, ERC-1155 contracts and major NFT marketplaces like OpenSea, Blur, LooksRare, Rarible, SuperRare) as a relative percentage.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/fees/gas_used_sum_nfts_relative
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-nft-gas-usage-share-relative-ethereum-b97c07e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DBvLqMZo3-UNTXKoiHc9y

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-share-relative-ethereum-b97c07e5
```

Example prompt: What share of Ethereum's total gas usage is currently being consumed by NFT transactions and marketplaces like OpenSea and Blur? Pull the latest 24h Glassnode data for ETH in JSON format.

## When to prefer this

Use this endpoint when you need on-chain, blockchain-native data specifically measuring NFT ecosystem gas demand relative to total Ethereum gas — especially when tracking NFT market activity cycles, comparing NFT vs DeFi network usage, or analyzing how NFT marketplace activity (OpenSea, Blur, LooksRare) impacts Ethereum block space utilization. Prefer this over general fee endpoints when the NFT-specific relative share (not absolute gas) is the key metric.

## Known failure modes

- Missing required 'a' query parameter (must be 'ETH') returns 400 Bad Request
- Unsupported interval or format enum value returns validation error
- Payment not provided or insufficient USDC results in 402 Payment Required
- Rate limiting or quota exceeded returns 429 Too Many Requests
- Glassnode data pipeline delay may cause stale or missing recent data points

## How this service works

Gas Usage by NFTs (Relative) — The share of Ethereum gas consumed by transactions interacting with non-fungible tokens. The category includes both NFT token-contract standards (ERC-721, ERC-1155) and the NFT marketplaces (OpenSea, Blur, LooksRare, Rarible, SuperRare) where those tokens trade. Data by Glassnode.

## Output

Returns a time-series array of objects, each containing a Unix timestamp (t) and an object (o) with the relative share of Ethereum gas consumed by NFT-related transactions (ERC-721, ERC-1155 token contracts and major NFT marketplaces) expressed as a fraction or percentage of total gas used, 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-nft-gas-usage-share-relative-ethereum-b97c07e5/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)
