# booAIP Crypto Derivatives Data API

> booAIP Crypto Derivatives Data API is a paid API for AI agents from booaip.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns aggregated derivatives market data for a crypto symbol, including funding rate sentiment, average funding APR, and cross-exchange funding spread.

## Facts

- Endpoint: GET https://booaip.vercel.app/api/derivatives
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/booaip-crypto-derivatives-data-api-6d0fc807
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__3cREebiPcYNewbIePPBd

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 booaip-crypto-derivatives-data-api-6d0fc807
```

Example prompt: What's the current derivatives market sentiment for BTC — is it mild long or short, and what's the average funding APR and spread across exchanges right now?

## When to prefer this

Use this endpoint when an AI agent needs real-time crypto derivatives market intelligence — specifically funding rate sentiment, APR, and cross-exchange spread — for a given token symbol. Prefer this over generic price APIs when the task involves perpetual futures positioning, funding arbitrage analysis, or market sentiment from the derivatives market.

## Known failure modes

- Unsupported or invalid symbol returns an error or empty response
- Network timeout from upstream data provider
- Symbol not listed on any tracked derivatives exchange
- Payment not completed via x402 results in 402 response blocking data
- Stale data if upstream aggregator has a delay

## How this service works

Pay-per-call crypto/web3 data for AI agents. USDC via x402 on Base.

## Output

A JSON object containing the queried symbol, an aggregate object with sentiment label (e.g. 'mild_long') and average funding APR percentage, and a funding spread object with the spread percentage across exchanges.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Coin symbol, e.g. BTC, ETH, SOL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC",
  "aggregate": {
   "sentiment": "mild_long",
   "avgFundingAprPct": 8.5
  },
  "fundingSpread": {
   "spreadPct": 12.3
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/booaip-crypto-derivatives-data-api-6d0fc807/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from booaip.vercel.app](https://www.zero.xyz/host/booaip.vercel.app/llms.txt)
