# Nami Per-Venue Funding Rates

> Nami Per-Venue Funding Rates is a paid API for AI agents from api-internal.usenami.io, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-15).

Returns current perpetual funding rates broken down by individual trading venue for a specified symbol or all symbols

## Facts

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

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-internal-usenami-io-6ddd13ac
```

Example prompt: What are the current perpetual funding rates for BTC across each individual trading venue — show me the breakdown per exchange?

## When to prefer this

Use this endpoint when you need a granular, per-venue breakdown of current funding rates rather than a blended or aggregated rate. Prefer this over spread or aggregated endpoints when identifying arbitrage opportunities between venues or monitoring which exchange has the most favorable (or punishing) funding rate for a given perpetual position.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty result
- Missing required 'type' or 'method' fields in input object returns a 400-level error
- Network or upstream venue data unavailability may return stale or partial results
- Payment failure via x402 protocol results in 402 response with no data returned

## How this service works

Current per-venue funding rates for a given symbol or all symbols

## Output

A snapshot of the current funding rate for each venue (exchange) for the requested symbol or all symbols, including the rate value, venue name, symbol, and timestamp of the data.

## 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-internal-usenami-io-6ddd13ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api-internal.usenami.io](https://www.zero.xyz/host/api-internal.usenami.io/llms.txt)
