# Nami Perpetual Funding Next Payment ETA & Rate

> Nami Perpetual Funding Next Payment ETA & Rate is a paid API for AI agents from api.usenami.io, paid per call via x402, $0.003000/call, status unknown (last checked 2026-09-13).

Returns the next funding payment timestamp (ETA) and predicted funding rate for a specific ticker/venue pair on perpetual futures markets.

## Facts

- Endpoint: GET https://api.usenami.io/v1/perp/funding-next
- Price: $0.003000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-usenami-io-0a42a0cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0IKwRqfImLM7CVKwVYUW7

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-0a42a0cf
```

Example prompt: What's the next funding payment ETA and predicted rate for BTC perps on Binance right now — I'm deciding whether to enter before or after the next funding event.

## When to prefer this

Use this endpoint when you need real-time next-funding-event timing and rate prediction for a specific perpetual futures ticker on a named venue — particularly for entry/exit timing strategies that depend on funding arbitrage or cost avoidance. Prefer this over the cross-venue funding spread endpoint when you already know which venue you're trading on and want precise payment countdown data.

## Known failure modes

- Unsupported ticker or venue pair returns an error or empty result
- Stale or unavailable market data may produce inaccurate rate predictions
- Missing required input fields (ticker or venue) returns a 400-level error
- Rate limit exceeded or payment failure returns a 402/429 error

## How this service works

Next funding payment ETA for one crypto perpetual on one venue, with the current indicative funding rate alongside — when the next settlement lands and where the rate stands now. Entry-timing input for funding-arb and carry trades. Not a payment forecast: the endpoint takes no position side or size, and the rate can move before settlement.

## Output

Returns the estimated time until the next funding payment (ETA) and the predicted funding rate size for the specified ticker and venue, enabling entry timing decisions around funding events.

## Example request

```json
{
 "input": {
  "type": "perpetual_futures",
  "method": "GET"
 },
 "venue": "binance",
 "ticker": "BTC"
}
```

## 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-0a42a0cf/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)
