# Hyperliquid Predicted Funding Rates (Cross-Venue)

> Hyperliquid Predicted Funding Rates (Cross-Venue) is a paid API for AI agents from hyperliquid.use.x402atlas.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns predicted next funding rates for every asset across Hyperliquid and CEX perpetual venues, enabling cross-venue carry analysis.

## Facts

- Endpoint: GET https://hyperliquid.use.x402atlas.com/predicted-funding
- 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/hyperliquid-predicted-funding-rates-cross-venue-12b2d27c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5PkmrHDHpd8D9kY7SG4Da

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 hyperliquid-predicted-funding-rates-cross-venue-12b2d27c
```

Example prompt: Can you pull the predicted next funding rates across Hyperliquid and CEX perpetual venues for all assets so I can spot any carry trade or funding arbitrage opportunities?

## When to prefer this

Use this endpoint when you need a normalized, cross-venue view of predicted funding rates for all Hyperliquid perpetual assets simultaneously — especially for carry trade screening, funding arbitrage detection, or building dashboards that compare Hyperliquid funding vs CEX perp funding. Prefer this over querying Hyperliquid directly because it de-nests Hyperliquid's complex nested arrays and aligns CEX funding data in the same response.

## Known failure modes

- Payment required (402) if x402 payment header is missing or insufficient
- Upstream Hyperliquid API unavailable causing empty or stale data
- Rate limiting if called too frequently without valid payment
- Malformed response if Hyperliquid changes nested array format

## How this service works

Predicted next funding rates per asset across venues (Hyperliquid vs CEX perps) — cross-venue carry, de-positioned from Hyperliquid's nested arrays.

## Output

A JSON object containing a list of assets, each with an array of venue entries showing the predicted funding rate (as a high-precision string) and the next funding timestamp per venue, plus the count of assets and the timestamp when the response was generated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "assets": [
   {
    "coin": "BTC",
    "venues": [
     {
      "venue": "HlPerp",
      "funding_rate": "0.0000125",
      "next_funding_time": "2026-07-10T13:00:00Z"
     },
     {
      "venue": "BinancePerp",
      "funding_rate": "0.0001",
      "next_funding_time": "2026-07-10T16:00:00Z"
     }
    ]
   }
  ],
  "queried_at": "2026-07-10T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-predicted-funding-rates-cross-venue-12b2d27c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hyperliquid.use.x402atlas.com](https://www.zero.xyz/host/hyperliquid.use.x402atlas.com/llms.txt)
