# Nami Perp Oracle Family Classifier

> Nami Perp Oracle Family Classifier is a paid API for AI agents from api.usenami.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns oracle price-source family classification for 30+ perpetual futures venues, enabling basis-risk awareness for cross-venue strategies

## Facts

- Endpoint: GET https://api.usenami.io/v1/perp/oracle-families
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-usenami-io-f737716e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nBq_RwAC-lOSdsJGBEvAl

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 api-usenami-io-f737716e
```

Example prompt: Can you pull the oracle price-source family classification for all perp venues on Nami so I can see which exchanges share the same oracle and understand my basis risk before running a cross-venue funding arb strategy?

## When to prefer this

Use this endpoint when building cross-venue perpetual futures strategies where oracle-driven basis risk matters — specifically when you need to know whether two or more venues reference the same price source family and might converge or diverge together. Prefer this over generic venue-info endpoints when oracle dependency analysis is the primary concern.

## Known failure modes

- Missing or invalid 'type' or 'method' fields in input returns a 400 validation error
- Payment not provided or insufficient results in 402 Payment Required
- Service temporarily unavailable returns 503
- Stale oracle classification data if venue oracle sources change without cache refresh
- Unknown venue or oracle type not yet indexed returns incomplete results

## How this service works

Oracle price-source family classification across tracked crypto perp venues — which venues derive their index price from the same upstream feed. Basis-risk awareness for cross-venue and funding-arb strategies: two venues sharing an oracle family will not diverge independently, so a spread between them is not the hedge it looks like.

## Output

A structured mapping of 30+ perpetual futures venues to their oracle price-source families, indicating which venues share the same underlying price feed — enabling traders to identify correlated basis risk and group venues by oracle type for cross-venue strategy construction.

## Example request

```json
{
 "input": {
  "type": "perpetual_futures",
  "method": "GET"
 }
}
```

## 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"
    },
    "method": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-usenami-io-f737716e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.usenami.io](https://www.zero.xyz/host/api.usenami.io/llms.txt)
