# Bazaar Gateway HYPE Signal Deep Dive

> Bazaar Gateway HYPE Signal Deep Dive is a paid API for AI agents from bazaar-gateway.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a detailed breakdown of a single Hyperliquid (HYPE) flywheel signal: definition, relevance, buy/neutral/sell thresholds, and current status with raw inputs.

## Facts

- Endpoint: GET https://bazaar-gateway.vercel.app/api/hype-signal
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bazaar-gateway-hype-signal-deep-dive-ac558aa4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7jivjgiyxkwDCbx3Ul-wH

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 bazaar-gateway-hype-signal-deep-dive-ac558aa4
```

Example prompt: Give me a full deep dive on the momentum-rsi signal for HYPE — I want the definition, why it matters for the flywheel, what the buy and sell thresholds are, and what the current status looks like with the raw inputs.

## When to prefer this

Use this endpoint when you need a thorough, single-signal analysis for Hyperliquid (HYPE) — including thresholds and raw data — rather than a broad multi-signal snapshot. Prefer this over the full fundamentals engine when the user wants to understand one specific signal in depth, including its definition and actionable buy/sell framework.

## Known failure modes

- Invalid or unrecognized signal name returns an error (valid names are a fixed enum: fees-30d, revenue-annualized, ps-ratio, funding, market-share, price-7d, open-interest, volume-24h, tvl-bridge, hip3-rwa, buybacks-af, staking, auction-hip3, mcap-fdv, momentum-rsi)
- Missing required 'name' query parameter returns a 400-level error
- Upstream data unavailability may cause stale or missing raw input values
- Payment failure (x402) if USDC micropayment is not processed correctly

## How this service works

Deep dive on one HYPE engine signal: definition, why it matters for the flywheel, buy/neutral/sell thresholds and the raw inputs behind the current status. Valid names include fees-30d, revenue-annualized, ps-ratio, funding, market-share, price-7d, open-interest, volume-24h, tvl-bridge, hip3-rwa, buybacks-af, staking, auction-hip3, mcap-fdv, momentum-rsi.

## Output

A structured object containing the signal's definition, an explanation of why it matters for the Hyperliquid flywheel, the numeric or categorical thresholds for buy/neutral/sell classifications, the current status designation, and the raw underlying input values driving that status.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Signal id, e.g. fees-30d | ps-ratio | funding | market-share | buybacks-af | staking | hip3-rwa | momentum-rsi"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bazaar-gateway-hype-signal-deep-dive-ac558aa4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bazaar-gateway.vercel.app](https://www.zero.xyz/host/bazaar-gateway.vercel.app/llms.txt)
