# ByKaranteli Options Flow Tape

> ByKaranteli Options Flow Tape is a paid API for AI agents from bykaranteli.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns deep historical BTC or ETH options flow data from Deribit, including daily premium-flow history and full big-print list beyond the free 24h summary.

## Facts

- Endpoint: GET https://bykaranteli.com/api/x402/options-flow
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bykaranteli-options-flow-tape-2e4e91c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LRw8is9gD7r3iafAgIgIH

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 bykaranteli-options-flow-tape-2e4e91c5
```

Example prompt: Pull the full Deribit options flow tape for BTC — I want to see the historical daily premium-flow and the complete big-print list, not just the last 24 hours.

## When to prefer this

Choose this endpoint when you need historical depth in Deribit options flow beyond the free 24-hour window — specifically for daily premium-flow trends and large block (big-print) trade lists for BTC or ETH. Prefer this over the free /api/public/options-flow endpoint when multi-day historical context or complete big-print coverage is required for research, backtesting, or institutional flow analysis.

## Known failure modes

- Missing or invalid currency parameter defaults to BTC
- Payment not fulfilled results in 402 error
- Unsupported currency value returns error
- Rate limiting or quota exceeded returns 429
- Service unavailability or Deribit data pipeline issues may return 503

## How this service works

BTC or ETH options tape depth from our own recorded Deribit + OKX flow: the daily premium-flow history plus the full big-print list with strike, expiry, direction, premium, implied volatility and venue.

## Output

A structured dataset containing the daily premium-flow history recorded from Deribit options trading activity, plus a full list of big-print (large block) options trades — extending well beyond the free 24-hour summary window. Data is specific to the requested currency (BTC or ETH).

## 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",
     "properties": {
      "currency": {
       "type": "string",
       "description": "BTC or ETH (default BTC)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "currency": "BTC",
  "call_premium_24h_usd": 1250000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bykaranteli-options-flow-tape-2e4e91c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bykaranteli.com](https://www.zero.xyz/host/bykaranteli.com/llms.txt)
