# Glassnode Exchange Withdrawal Transfer Count

> Glassnode Exchange Withdrawal Transfer 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-15).

Returns the total count of on-chain transfers sent from exchange addresses (i.e., exchange withdrawal count) for a given asset over time.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/transactions/transfers_from_exchanges_count
- 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-exchange-withdrawal-transfer-count-43b1c854
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pbKoMsuZHjpnEsFlaDCSV

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-exchange-withdrawal-transfer-count-43b1c854
```

Example prompt: Pull the Glassnode metric for number of transfers from exchanges for BTC on Binance over the last 24 hours and return it as JSON.

## When to prefer this

Use this endpoint when you need the count (not the volume) of withdrawals from crypto exchanges on-chain — specifically to understand how frequently users are pulling funds off exchanges. Prefer this over volume-based metrics when frequency of transfer events matters more than the amount moved. Ideal for monitoring exchange activity trends, capital flight signals, or user behavior patterns by exchange.

## Known failure modes

- Missing required 'a' (asset) parameter returns a 400 or error response
- Invalid asset symbol (e.g. unsupported ticker) returns an empty result or error
- Invalid exchange name 'e' parameter may return no data or an error
- Payment not completed (x402 protocol) results in a 402 Payment Required response
- Unsupported time interval 'i' value returns a validation error
- Network or upstream Glassnode data unavailability returns a 5xx error

## How this service works

Number of Transfers from Exchanges — The total count of transfers from exchange addresses, i.e. the number of on-chain withdrawals from exchanges. Data by Glassnode.

## Output

An array of time-series data points, each containing a Unix timestamp (t) and the count of on-chain transfers originating from exchange addresses (v) for the requested asset and time 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"
      },
      "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-exchange-withdrawal-transfer-count-43b1c854/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)
