# Hyperliquid Account HYPE Staking Summary

> Hyperliquid Account HYPE Staking Summary is a paid API for AI agents from hyperliquid-accounts.use.x402atlas.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a Hyperliquid account's HYPE staking summary including delegated, undelegated, and pending-withdrawal amounts across validators for any 0x address.

## Facts

- Endpoint: GET https://hyperliquid-accounts.use.x402atlas.com/staking
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-account-hype-staking-summary-66431315
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BHyRKi_SiNNE4nBEQxEPm

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-account-hype-staking-summary-66431315
```

Example prompt: What's the HYPE staking summary for the Hyperliquid account 0x1234567890abcdef1234567890abcdef12345678 — how much is delegated, undelegated, and pending withdrawal?

## When to prefer this

Use this endpoint when you need staking-specific data (delegated, undelegated, pending-withdrawal HYPE) for a Hyperliquid account. Prefer this over general account endpoints when the user's question is specifically about staking, delegation, or unstaking status rather than spot balances, open positions, trade history, or PnL.

## Known failure modes

- Invalid or malformed address (not matching ^0x[0-9a-fA-F]{40}$) returns a validation error
- Address with no staking history returns empty or zero-value staking fields
- Hyperliquid upstream API unavailable causes a service error or timeout
- Payment not included or insufficient causes HTTP 402 response

## How this service works

A Hyperliquid account's HYPE staking summary (delegated/undelegated/pending), for any 0x address.

## Output

Returns a JSON object containing the queried address (lowercased), the timestamp of the query, and the upstream Hyperliquid delegatorSummary object with total delegated HYPE, undelegated HYPE, and pending-withdrawal HYPE amounts across all validators.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$",
       "description": "0x-prefixed 20-byte Hyperliquid account address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "address",
      "staking"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Lower-cased account address queried"
      },
      "staking": {
       "type": "object",
       "description": "Upstream Hyperliquid delegatorSummary object relayed verbatim — total delegated, undelegated and pending-withdrawal HYPE amounts across validators"
      },
      "queried_at": {
       "type": "string",
       "format": "date-time",
       "description": "Time the upstream was queried"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "0x0000000000000000000000000000000000000000",
  "staking": {
   "delegated": "0.0",
   "undelegated": "0.0",
   "totalPendingWithdrawal": "0.0"
  },
  "queried_at": "2026-07-10T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-account-hype-staking-summary-66431315/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hyperliquid-accounts.use.x402atlas.com](https://www.zero.xyz/host/hyperliquid-accounts.use.x402atlas.com/llms.txt)
