# Glassnode Mean Transfer Volume to Exchanges

> Glassnode Mean Transfer Volume to Exchanges 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 mean value of on-chain transfers sent to exchange addresses for a given crypto asset over time.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/transactions/transfers_volume_to_exchanges_mean
- 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-mean-transfer-volume-to-exchanges-16ee41d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OFKnvoTNx8vRbeqh8lcI7

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-mean-transfer-volume-to-exchanges-16ee41d8
```

Example prompt: What's the average BTC transfer value going into exchanges right now? Pull the Glassnode mean transfer volume to exchanges for Bitcoin in USD with daily (24h) resolution.

## When to prefer this

Use this endpoint when you need to analyze the average size of individual on-chain transfers flowing into crypto exchange addresses — useful for detecting shifts in whale vs. retail behavior on exchanges. Prefer this over total volume metrics when the per-transfer mean size (not aggregate) matters for your analysis.

## Known failure modes

- Missing required 'a' (asset) parameter returns validation error
- Invalid asset symbol returns no data or error
- Unsupported currency or interval enum value rejected
- Payment not processed results in 402 Payment Required
- Exchange name not recognized may return empty data
- Network timeout returns no data

## How this service works

Mean Transfer Volume to Exchanges — The mean value of a transfer to exchange addresses. Data by Glassnode.

## Output

Returns a time-series array of objects, each containing a Unix timestamp (t) and the mean transfer volume to exchange addresses (v) in the requested currency (USD or native units) for the specified asset and interval.

## 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": {
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "c": {
       "enum": [
        "native",
        "usd"
       ],
       "type": "string",
       "description": "Currency for denominated values, e.g. usd, native"
      },
      "e": {
       "type": "string",
       "description": "Exchange name, e.g. binance, coinbase"
      },
      "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": {
       "t": {
        "type": "number"
       },
       "v": {
        "type": "number"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glassnode-mean-transfer-volume-to-exchanges-16ee41d8/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)
