# Hypurr Claw Hyperliquid Market Search

> Hypurr Claw Hyperliquid Market Search is a paid API for AI agents from hypurrclaw.xyz, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-15).

Text-search Hyperliquid perpetual and spot markets by commodity or token name across all or a specific DEX

## Facts

- Endpoint: POST https://hypurrclaw.xyz/x402/tools/searchHyperliquidMarkets
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hypurr-claw-hyperliquid-market-search-772f7232
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F0D0m1Qku7recmmTH9ktI

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 hypurr-claw-hyperliquid-market-search-772f7232 -d '<json body>'
```

Example prompt: Search Hyperliquid markets for anything related to 'gold' — include both perp and spot, and show me up to 20 results.

## When to prefer this

Use this endpoint when you need to discover which Hyperliquid markets exist for a given commodity or token by name — especially useful for non-crypto underlyings like oil, gold, or copper where exact ticker symbols are unknown. Prefer this over manually enumerating markets or scraping Hyperliquid docs.

## Known failure modes

- Empty results if no markets match the query string
- Query too long (over 64 chars) returns validation error
- Limit out of range (must be 1-100) returns validation error
- Unknown DEX name returns empty or error response
- Network or payment failure returns HTTP 402 or 5xx

## How this service works

Text-search Hyperliquid perp and spot markets by name (e.g. oil, copper, purr) across all perp dexes unless dex is set. Returns human-readable name/coin plus exchange assetId and spotPairId for each hit. Read-only.

## Output

A list of matching Hyperliquid markets (perp and/or spot) whose names match the text query, including market identifiers, type (perp or spot), and DEX information, filtered and ranked by relevance to the search term.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "inputSchema"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "dex": {
       "type": "string",
       "maxLength": 32
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "maxLength": 64,
       "minLength": 1
      },
      "includePerp": {
       "type": "boolean"
      },
      "includeSpot": {
       "type": "boolean"
      }
     },
     "additionalProperties": true
    },
    "description": {
     "type": "string"
    },
    "inputSchema": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "query"
     ],
     "properties": {
      "dex": {
       "type": "string",
       "maxLength": 32
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "maxLength": 64,
       "minLength": 1
      },
      "includePerp": {
       "type": "boolean"
      },
      "includeSpot": {
       "type": "boolean"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "additionalProperties": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hypurr-claw-hyperliquid-market-search-772f7232/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hypurrclaw.xyz](https://www.zero.xyz/host/hypurrclaw.xyz/llms.txt)
