# Glassnode Bridges Withdrawals By Chain

> Glassnode Bridges Withdrawals By Chain 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 USD value withdrawn from Ethereum bridge smart contracts, broken out per destination chain, showing capital flowing back into Ethereum from target blockchains.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/bridges/withdrawals_by_chain
- 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-bridges-withdrawals-by-chain-a3286720
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XHzKMytdjOjzJ9vTQRnp_

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-bridges-withdrawals-by-chain-a3286720
```

Example prompt: Can you pull the Glassnode bridge withdrawals by chain metric for ETH in USD for the last 24 hours, so I can see how much value is flowing back into Ethereum from different blockchains?

## When to prefer this

Use this endpoint when you need chain-specific breakdown of bridge withdrawal flows (capital returning to Ethereum from L2s/sidechains) with USD denomination, sourced from Glassnode's on-chain data. Prefer this over generic bridge trackers when you need structured time-series data per destination chain with a 24h resolution and reliable institutional-grade blockchain analytics.

## Known failure modes

- Missing required 'a' parameter (asset symbol) returns 400 error
- Invalid asset symbol returns 422 or empty result
- Payment not included or insufficient USDC triggers 402 Payment Required
- Unsupported interval or currency enum value returns validation error
- Rate limiting or upstream Glassnode data unavailability returns 503

## How this service works

Bridges Withdrawals By Chain — The total USD value withdrawn from bridge smart contracts on Ethereum and therefore flowing back into Ethereum and out of the target blockchains, broken out per destination chain. Data by Glassnode.

## Output

A time-series array of objects, each with a timestamp (t) and an object (o) containing the USD value of bridge withdrawals broken down by destination chain, showing capital leaving L2s and other chains back to Ethereum.

## 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": [
        "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": [
        "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-bridges-withdrawals-by-chain-a3286720/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)
