# Synthora Derivatives Intelligence Bundle

> Synthora Derivatives Intelligence Bundle is a paid API for AI agents from derivbundle.hergertsynthora.com, paid per call via x402, $1.6/call, status unknown (last checked 2026-09-15).

Returns a combined snapshot of perpetuals data, open interest, funding rates, DeFi market data, and gas oracle for a given crypto asset in a single call

## Facts

- Endpoint: POST https://derivbundle.hergertsynthora.com/service
- Price: $1.6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-derivatives-intelligence-bundle-f440a64e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FFTKQ7xouL01yzmwiDu-8

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 synthora-derivatives-intelligence-bundle-f440a64e -d '<json body>'
```

Example prompt: Pull me the full derivatives intel bundle for ETH — perps snapshot, open interest, funding rates, DeFi market data, and gas oracle all in one shot.

## When to prefer this

Use this endpoint when you need multiple derivatives data points (perps, funding, open interest, gas, DeFi market) for a single crypto asset aggregated in one low-cost call, rather than hitting multiple separate APIs. Especially useful for trading bots, DeFi dashboards, or agent workflows that need a comprehensive derivatives market snapshot cheaply ($0.01) and reliably (partial degradation ensures you always get something back).

## Known failure modes

- Invalid or unrecognized asset symbol returns an error or empty dataset
- Upstream provider partial failure: one or more of the 4 datasets may be missing but call still succeeds with partial data
- Payment not processed or wallet not recognized: call may be rejected or billed incorrectly
- Ed25519 signature verification failure on client side if response is tampered
- Rate limiting if free tier (first 3 calls per X-WALLET) is exhausted without payment

## How this service works

Derivatives intel bundle: perps snapshot + open interest + funding + DeFi market data + gas oracle for an asset in ONE $0.01 call. 4 datasets, partial degradation (never fails whole), Ed25519-signed. First 3 calls FREE per wallet (X-WALLET). No charge on upstream failure. SYNTHORA.

## Output

A signed (Ed25519) bundle of up to 4 datasets for the requested asset: perpetuals snapshot, open interest, funding rates, DeFi market data, and current gas oracle reading. Partial degradation is supported — if an upstream source fails, the remaining datasets are still returned. Response is signed for integrity verification.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "derivbundle",
  "result": {
   "asset": "BTC",
   "partial": false,
   "datasets": {},
   "datasets_ok": 4,
   "datasets_total": 4
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-derivatives-intelligence-bundle-f440a64e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from derivbundle.hergertsynthora.com](https://www.zero.xyz/host/derivbundle.hergertsynthora.com/llms.txt)
