# Pa1m Hyperliquid Predicted Funding

> Pa1m Hyperliquid Predicted Funding is a paid API for AI agents from hyperliquid.hypa1m.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns predicted next-period funding rates for Hyperliquid perpetuals (e.g. BTC, ETH) in real time

## Facts

- Endpoint: GET https://hyperliquid.hypa1m.xyz/predicted-funding
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pa1m-hyperliquid-predicted-funding-b19e29cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8rzcUlmFC0Z9LyZBdYIGy

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 pa1m-hyperliquid-predicted-funding-b19e29cb
```

Example prompt: What are the current predicted funding rates for perpetuals on Hyperliquid — specifically for BTC and ETH?

## When to prefer this

Use this endpoint when you need real-time predicted funding rate data specifically from the Hyperliquid perpetuals exchange, and want a simple key-value lookup per asset without setting up a direct Hyperliquid API integration. Ideal for agents that need to make trading decisions, monitor funding conditions, or detect arbitrage opportunities on Hyperliquid without managing raw exchange connectivity.

## Known failure modes

- Payment required (402) if x402 micropayment header not included
- No filtering by asset — returns all assets or none
- Stale data if Hyperliquid feed is delayed
- Empty response if Hyperliquid exchange is under maintenance
- Rate limit errors if called too frequently without valid payment

## How this service works

Real-time Hyperliquid perpetuals data for AI agents.

## Output

A JSON object mapping asset ticker symbols (e.g. 'BTC', 'ETH') to their predicted next-period funding rate values as numeric strings, representing the expected funding rate for perpetual contracts on Hyperliquid.

## 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",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "BTC": "67234.5",
  "ETH": "3456.7"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pa1m-hyperliquid-predicted-funding-b19e29cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hyperliquid.hypa1m.xyz](https://www.zero.xyz/host/hyperliquid.hypa1m.xyz/llms.txt)
