# Nami Cross-Venue Funding Rate Spread Snapshot

> Nami Cross-Venue Funding Rate Spread Snapshot is a paid API for AI agents from api.usenami.io, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-14).

Returns a point-in-time snapshot of the funding rate spread for a symbol across all tracked perpetual venues, showing the highest and lowest rate venues and the spread in basis points.

## Facts

- Endpoint: GET https://api.usenami.io/v1/funding/spread/BTC
- Price: $0.001000/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-156705da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7M_v2XlmC4TG6sFqb9H07

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-156705da
```

Example prompt: What's the current funding rate spread for BTC across all perp exchanges — show me which venue has the highest and lowest rate and the spread in basis points?

## When to prefer this

Use this endpoint when you need an immediate, current cross-venue funding rate comparison for a specific symbol to identify arbitrage spreads or select the cheapest venue for a position. Prefer this over the historical rates endpoint when real-time spread is needed, and over the per-venue endpoint when you want the best/worst venue ranked automatically in a single call.

## Known failure modes

- Symbol not supported — returns 404 or empty result for tickers not tracked by Nami
- Rate limit or payment failure — 402 response if x402 micropayment not completed
- Venue data temporarily unavailable — partial snapshot if one or more venues are offline
- Invalid symbol format — malformed ticker returns 400 error
- Stale data — snapshot may lag by a few seconds during high-volatility periods

## How this service works

Cross-venue rate spread snapshot for a symbol

## Output

A cross-venue snapshot for the requested symbol (e.g. BTC) showing the current funding rates per venue, identifying the highest and lowest rate venues, and the total spread expressed in basis points — useful for funding arbitrage and carry trade analysis.

## Example request

```json
{
 "input": {
  "type": "api",
  "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-156705da/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)
