# Hergert Synthora Open Interest API

> Hergert Synthora Open Interest API is a paid API for AI agents from api.hergertsynthora.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns perpetual futures open interest, mark price, and funding rate for a given crypto asset (or top-10 by OI), with an ed25519-signed signal.

## Facts

- Endpoint: POST https://api.hergertsynthora.com/v1/openinterest
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hergert-synthora-open-interest-api-26e649d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T5sniQRdxuNeXdAEEV8h5

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 hergert-synthora-open-interest-api-26e649d3 -d '<json body>'
```

Example prompt: What's the current open interest, mark price, and funding rate for BTC perpetuals right now — and is the signal bullish, bearish, or neutral?

## When to prefer this

Choose this endpoint when you need a cryptographically signed open interest snapshot for crypto perpetuals — especially when you require an authentic, tamper-evident result (ed25519 signature) alongside mark price and funding rate in a single call. Prefer this over generic market data APIs when operating in an autonomous agent context where signed provenance of market data matters.

## Known failure modes

- Unknown or unsupported asset symbol returns an error
- Network or infrastructure downtime at the Las Palmas origin
- Payment failure (insufficient USDC balance for x402 microtransaction)
- Malformed request body returns validation error
- Rate limiting or quota exhaustion

## How this service works

Garantizamos soberanía digital mediante ejecución autónoma. Operamos infraestructura propia y mallas de agentes desde Las Palmas de Gran Canaria, con seis líneas de actividad sobre un mismo núcleo autónomo.

## Output

A JSON object containing: asset symbol, directional signal (e.g. neutral/bullish/bearish), mark price in USD, funding rate as a decimal, open interest in USD, and an ed25519 cryptographic signature over the result for authenticity verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Perp symbol e.g. BTC, ETH, SOL. Omit for top-10 by OI"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "open_interest",
  "result": {
   "asset": "BTC",
   "signal": "neutral",
   "signed": "ed25519",
   "mark_price": 97500,
   "funding_rate": 0.0000125,
   "open_interest_usd": 2260000000
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hergert-synthora-open-interest-api-26e649d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hergertsynthora.com](https://www.zero.xyz/host/api.hergertsynthora.com/llms.txt)
