Agent402 / tools / options-summary

Options market summary

$0.005 per call · USDC via x402 · POST /api/options-summary

One-call options market summary for a currency on Deribit: index price, the DVOL implied-volatility index, call and put open interest with put/call ratio, total open interest in coins and USD, 24h volume, per-expiry open interest and volume, the top instruments by open interest, and the perpetual's mark, funding and open interest. BTC and ETH carry the deep books; other currencies return whatever Deribit lists. Keyless public data.

TRY IN PLAYGROUND →

Input

FieldTypeDescription
currencystringBTC (default), ETH, or another Deribit currency code.

Example output

{
  "source": "deribit",
  "currency": "BTC",
  "indexPrice": 77232.62,
  "dvol": {
    "value": 41.74,
    "time": "2026-08-22T11:00:00.000Z"
  },
  "options": {
    "instruments": 900,
    "callOpenInterest": 150000,
    "putOpenInterest": 110000,
    "putCallOiRatio": 0.733,
    "totalOpenInterest": 260000,
    "openInterestUsd": 20000000000,
    "volume24hBase": 12000,
    "volume24hUsd": 900000000,
    "expiries": [
      {
        "expiry": "26AUG26",
        "expiresAt": "2026-08-26T08:00:00.000Z",
        "openInterest": 12000,
        "volume24hUsd": 5000000,
        "instruments": 60
      }
    ],
    "topByOpenInterest": [
      {
        "instrument": "BTC-25SEP26-120000-P",
        "expiry": "25SEP26",
        "strike": 120000,
        "type": "put",
        "openInterest": 174.5,
        "markIv": 62.03,
        "volume24hUsd": 0
      }
    ]
  },
  "perpetual": {
    "instrument": "BTC-PERPETUAL",
    "markPrice": 77263.43,
    "funding8h": 0.000195,
    "currentFunding": 0.000149,
    "openInterest": 903679080,
    "volume24hUsd": 664803850
  },
  "fetchedAt": "2026-08-22T12:00:00.000Z"
}

Try it - see the 402 challenge (free)

curl -i -X POST https://agent402.tools/api/options-summary \
  -H "Content-Type: application/json" \
  -d '{"currency":"BTC"}'

The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:

Paid call (JavaScript agent)

import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";

const client = new x402Client();
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);

const res = await payFetch("https://agent402.tools/api/options-summary", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    "currency": "BTC"
  }),
});
Wallet-only. This tool reaches the network/browser/storage, so it is paid in USDC via x402 (no proof-of-work tier).

Related tools

Crypto order book

$0.003 · GET /api/crypto-orderbook

L2 order-book snapshot for a spot pair: best bid/ask, mid price, spread (absolute + %), and the top N aggregated price l…

try in playground →

Stablecoin peg monitor

$0.003 · GET /api/stablecoin-peg

Live $1-peg deviation for the top USD stablecoins (USDT, USDC, USDS, DAI, USDe, PYUSD, USDD, TUSD, FDUSD by default, or …

try in playground →

Wallet balance (native + ERC-20)

$0.002 · POST /api/wallet-balance

Look up the native coin balance (ETH/MATIC) plus every ERC-20 holding for a wallet address on Ethereum, Base, Polygon, A…

try in playground →