# Suverse Perpetual Funding Batch

> Suverse Perpetual Funding Batch is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current funding rates, mark prices, next funding timestamps, and predicted next rates for multiple Binance perpetual contracts in a single batch call.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-perp-funding-batch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-cd682944
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xRDW4I403gLmx3nGXgpFU

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 proxy-suverse-io-cd682944 -d '<json body>'
```

Example prompt: Pull the current funding rates, mark prices, and predicted next rates for BTC, ETH, SOL, and BNB perpetual contracts on Binance — I want to see them all at once to find the best funding arbitrage opportunity.

## When to prefer this

Choose this endpoint when you need funding rate data for multiple Binance perpetual contracts simultaneously and want to avoid making individual per-symbol API calls. Ideal for funding arbitrage strategies, basis trading across several pairs, market making with funding skew tracking, or portfolio-level hedging decisions where latency and efficiency matter.

## Known failure modes

- Invalid or unsupported symbol returns an error for that entry
- Binance API downstream outage may cause stale or missing data
- Exceeding batch size limits may result in partial responses
- Network timeout on large symbol lists
- Malformed symbol names return validation errors

## How this service works

Batch funding rates for multiple Binance Futures perps in one call. Per-symbol mark price, funding rate, next funding timestamp, predicted next rate. AI agent funding arbitrage, multi-pair basis trader, market maker funding skew, hedge bot, batch perp API.

## Output

A batch response containing, for each requested symbol: the current mark price, current funding rate, timestamp of the next funding settlement, and the predicted next funding rate. Useful for comparing funding skew across multiple perp pairs simultaneously.

## Example request

```json
{
 "symbols": [
  "BTCUSDT",
  "ETHUSDT",
  "SOLUSDT",
  "BNBUSDT"
 ]
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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