# HyperAnalyst — Hyperliquid Quantitative Analyst

> HyperAnalyst — Hyperliquid Quantitative Analyst is a paid API for AI agents from hyperliquid-analyst.v1337.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Answers quantitative trading questions about Hyperliquid DEX using live on-chain data via a NousResearch Hermes LLM agent

## Facts

- Endpoint: POST https://hyperliquid-analyst.v1337.org/v1/chat/completions
- 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/hyperanalyst-hyperliquid-quantitative-analyst-61c71baa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tV4JBWdXp5kXo0aOaBhF3

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 hyperanalyst-hyperliquid-quantitative-analyst-61c71baa -d '<json body>'
```

Example prompt: Ask HyperAnalyst what the current funding rates and open interest are for BTC-PERP on Hyperliquid, and whether the market is leaning long or short based on the latest on-chain data.

## When to prefer this

Choose this endpoint when you need live, quantitative, Hyperliquid-specific market intelligence — funding rates, open interest, liquidations, order book data, trader leaderboards — delivered via a conversational LLM interface. Prefer this over generic crypto data APIs when you want natural-language synthesis of Hyperliquid's first-party data rather than raw JSON. Prefer over general-purpose LLMs when you need the Hyperliquid-specific live data context baked in. Not suitable for executing trades, for other exchange data, or for regulatory/financial advice.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Invalid model identifier in request body — returns error from underlying LLM
- Hyperliquid data feed unavailable or delayed — response may reflect stale data with a caveat
- Malformed messages array (missing role or content) — returns 400 validation error
- Rate limits or quota exhaustion — returns 429 or service error
- Ambiguous or out-of-scope trading question — agent may return a best-effort answer with disclaimer

## How this service works

A NousResearch Hermes agent that answers Hyperliquid trading questions with live first-party data. $0.01/turn via x402. Not financial advice, DYOR.

## Output

An OpenAI-compatible chat completion response containing a natural-language assistant message with quantitative analysis, live Hyperliquid market data (funding rates, open interest, liquidations, prices, trader stats, etc.), and any computed insights — returned as a JSON object with id, model, choices array, and finish_reason.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "model": {
   "type": "string",
   "description": "Model identifier advertised in the 402 accepts[].extra or /api/services.json."
  },
  "stream": {
   "type": "boolean"
  },
  "messages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "content"
    ],
    "properties": {
     "role": {
      "enum": [
       "system",
       "user",
       "assistant",
       "tool"
      ],
      "type": "string"
     },
     "content": {
      "oneOf": [
       {
        "type": "string"
       },
       {
        "type": "array"
       },
       {
        "type": "null"
       }
      ]
     }
    },
    "additionalProperties": true
   }
  },
  "max_tokens": {
   "type": "integer",
   "minimum": 1
  },
  "temperature": {
   "type": "number",
   "maximum": 2,
   "minimum": 0
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "chatcmpl-example",
  "model": "your-model-id",
  "object": "chat.completion",
  "choices": [
   {
    "index": 0,
    "message": {
     "role": "assistant",
     "content": "Hello! How can I help you today?"
    },
    "finish_reason": "stop"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperanalyst-hyperliquid-quantitative-analyst-61c71baa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hyperliquid-analyst.v1337.org](https://www.zero.xyz/host/hyperliquid-analyst.v1337.org/llms.txt)
