# Onvexia Exchange Netflow

> Onvexia Exchange Netflow is a paid API for AI agents from onvexia.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-19).

Returns the net flow of crypto assets between exchanges and external wallets for a given chain on a specific day

## Facts

- Endpoint: GET https://onvexia.com/v1/chain/exchange-netflow
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onvexia-exchange-netflow-7564d010
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_41jXC456wuLqRpS7LSHtD

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 onvexia-exchange-netflow-7564d010
```

Example prompt: Pull the exchange netflow for Ethereum on 2024-11-15 — I want to see whether funds were net flowing into or out of exchanges that day.

## When to prefer this

Use this endpoint when you need daily exchange netflow data for a specific blockchain — i.e., the net difference between crypto entering and leaving centralized exchanges on a given chain. Prefer this over generic blockchain explorers when you need pre-computed, analytics-ready netflow metrics with provenance metadata and coverage disclaimers, especially if you need consistent historical data back to 2008 across multiple chains via a simple REST call.

## Known failure modes

- Invalid or unsupported chain slug returns empty data array
- Future or out-of-range date returns empty data array
- Malformed ISO date format may result in an error or empty response
- Missing required query parameters may result in a 400 error
- Payment not processed (x402) results in a 402 Payment Required response
- Network or server errors return 5xx responses

## How this service works

Thousands of assets across ten chains, half a million analysed documents, labelled addresses and supply-age history reaching back to 2008 — fused into one reading per asset. REST, SQL, GraphQL and MCP.

## Output

Returns a JSON object with a data field containing an array or object of exchange netflow metrics for the requested chain and date, plus a meta field with coverage and provenance details including links to documentation and the endpoint path. An empty data array means no rows exist for that range, not that the metric is unsupported.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "day": {
       "type": "string",
       "description": "ISO date"
      },
      "chain": {
       "type": "string",
       "description": "Chain slug"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "description": "The result — an array or object depending on the endpoint. An empty array means no rows in range, never that the metric is unsupported."
      },
      "meta": {
       "type": "object",
       "description": "Coverage and provenance: what was measured, and what is not held. A null label means no label is held, never that the subject is safe."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [],
  "meta": {
   "docs": "https://onvexia.com/openapi.json",
   "endpoint": "/v1/chain/exchange-netflow"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onvexia-exchange-netflow-7564d010/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onvexia.com](https://www.zero.xyz/host/onvexia.com/llms.txt)
