# Pa1m Hyperliquid Perpetuals Meta

> Pa1m Hyperliquid Perpetuals Meta 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-13).

Returns real-time metadata and pricing for Hyperliquid perpetuals markets, including current prices for assets like BTC and ETH.

## Facts

- Endpoint: GET https://hyperliquid.hypa1m.xyz/meta
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pa1m-hyperliquid-perpetuals-meta-08b13736
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4PlY_A1d6U9C6aqHP1csA

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-meta-08b13736
```

Example prompt: What are the current perpetual prices for BTC and ETH on Hyperliquid right now?

## When to prefer this

Choose this endpoint when you need real-time perpetuals market metadata specifically from the Hyperliquid DEX, particularly when building trading bots, monitoring dashboards, or DeFi applications that require current perp prices with per-call micropayment access via x402.

## Known failure modes

- Payment not provided or invalid x402 payment header — returns 402 Payment Required
- Network or upstream Hyperliquid API unavailability — returns 5xx error
- Malformed request method (only GET/HEAD/DELETE accepted) — returns 400 or 405
- Stale or delayed data if Hyperliquid upstream feed is lagging

## How this service works

Real-time Hyperliquid perpetuals data for AI agents.

## Output

A JSON object mapping asset symbols (e.g. 'BTC', 'ETH') to their current perpetual prices as decimal numbers, reflecting real-time market data 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-meta-08b13736/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)
