# Nami Current Funding Rates

> Nami Current Funding Rates 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-15).

Returns current per-venue perpetual funding rates for a given symbol or all symbols across HIP-3 DEX venues

## Facts

- Endpoint: GET https://api.usenami.io/v1/funding/current
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-usenami-io-c0859744
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k6b-OP2nXQFHHBNShwlVS

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-c0859744
```

Example prompt: What are the current funding rates for BTC perpetuals across all the HIP-3 DEX venues right now?

## When to prefer this

Use this endpoint when you need a real-time snapshot of current funding rates across multiple HIP-3 DEX venues for one or all symbols. Prefer this over the historical endpoint when you want the current state rather than time-series data, and over the spread endpoint when you want raw per-venue rates rather than a pre-computed spread. Ideal for arbitrage screening, basis-risk assessment, or rate monitoring dashboards.

## Known failure modes

- Unknown or unsupported symbol returns empty results or 404
- Payment not received or x402 payment protocol failure returns 402
- Rate limit exceeded returns 429
- Malformed input schema returns 400 validation error
- Venue data temporarily unavailable may result in partial results

## How this service works

Funding rates per venue for one crypto perpetual, or the whole cross-venue set in one call. Major CEX and DEX venues — Binance, Bybit, OKX, Bitget, Gate.io, KuCoin, Hyperliquid, Paradex, Drift, Orderly, Lighter and more. Each row carries the venue's rate, its funding interval and the 8h-equivalent rate (venues quote on 1h/4h/8h, so raw rates are not comparable), plus canonical_id, asset_class and mark_price, so a ticker naming two unrelated assets is visible, not silently mixed.

## Output

A list of per-venue funding rate entries for the requested symbol (or all symbols), including the venue name, symbol, and current annualized or periodic funding rate, enabling direct cross-venue rate comparison.

## 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-c0859744/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)
