# CRYPTYX Taker Flow

> CRYPTYX Taker Flow is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns taker-side order flow metrics for a digital asset, including buy/sell volumes and buy-sell ratio

## Facts

- Endpoint: GET https://cryptyx.ai/api/taker-flow
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-taker-flow-8907497d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h8T4_kbC06Kj4VYjZIRT6

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 cryptyx-taker-flow-8907497d
```

Example prompt: What's the current taker flow for BTC — are buyers or sellers more aggressive right now, and what's the buy/sell ratio?

## When to prefer this

Use this endpoint when you need real-time taker-initiated order flow data for a specific digital asset — particularly the buy/sell volume split and ratio — as a signal of aggressive market sentiment. Prefer this over general price APIs when you want to understand directional pressure from market takers rather than just price or volume alone.

## Known failure modes

- Unknown or unsupported asset symbol returns empty or error response
- Missing asset parameter results in a 400 bad request
- Stale data if market data feed is delayed
- Rate limiting or payment failure for x402 micropayment results in 402 response

## How this service works

Daily taker buy/sell USD and buy/sell ratio per asset, split into spot and futures arrays, last N days. Raw tape for custom flow models. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns an array of flow objects for the requested asset, each containing the asset symbol, buy/sell ratio (e.g. 1.04 means slightly more buying), total buy volume in USD, and total sell volume in USD — giving a snapshot of aggressive taker-side market pressure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Asset symbol (e.g. BTC, ETH, SOL)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "flows": [
  {
   "asset": "BTC",
   "bs_ratio": 1.04,
   "buy_volume_usd": 500000000,
   "sell_volume_usd": 480000000
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-taker-flow-8907497d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptyx.ai](https://www.zero.xyz/host/cryptyx.ai/llms.txt)
