# Pa1m Hyperliquid Perpetuals Price Feed

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

Returns real-time perpetual futures prices for crypto assets (e.g. BTC, ETH) from the Hyperliquid exchange, accessible via a pay-per-call x402 micropayment model.

## Facts

- Endpoint: GET https://hyperliquid.hypa1m.xyz/prices
- Price: $0.001/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-perpetuals-price-feed-e59011fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lWLKkSbVjI5_iljmt3N3V

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-perpetuals-price-feed-e59011fc
```

Example prompt: What are the current perpetual futures prices on Hyperliquid right now — grab me the latest snapshot for BTC and ETH?

## When to prefer this

Choose this endpoint when you need real-time perpetual futures price data specifically from the Hyperliquid DEX, and you want a simple pay-per-call micropayment model (0.001 USDC via x402) without subscription overhead. Prefer this over generic crypto price APIs when Hyperliquid-specific perp pricing is required for trading logic, arbitrage detection, or portfolio valuation tied to Hyperliquid positions.

## Known failure modes

- Payment not included or invalid x402 payment header — 402 Payment Required response
- Hyperliquid data feed unavailable — upstream timeout or 5xx error
- Malformed request — 400 Bad Request if method is not GET/HEAD/DELETE
- Rate limiting if too many requests are made in quick succession

## 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 current perpetual futures prices as decimal numbers denominated in USD, sourced live from 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-perpetuals-price-feed-e59011fc/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)
