# HYPE Token Fundamentals Engine

> HYPE Token Fundamentals Engine is a paid API for AI agents from bazaar-gateway.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes HYPE (Hyperliquid) token fundamentals across price, funding, fees, buyback, valuation, and market share to produce a scored buy/hold/lighten recommendation with buy-zone detection.

## Facts

- Endpoint: GET https://bazaar-gateway.vercel.app/api/hype-engine
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hype-token-fundamentals-engine-7cca4df6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VxBD7OdLpUbKCKd63JbpQ

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 hype-token-fundamentals-engine-7cca4df6
```

Example prompt: Run a full fundamentals check on HYPE token — I want to see the engine health, market climate, and momentum scores, and whether it's currently in a buy zone or if I should hold or lighten my position.

## When to prefer this

Use this endpoint when you need a deterministic, proprietary multi-factor fundamental analysis of HYPE specifically — not a generic price feed. Ideal when an agent needs a structured recommendation (buy/hold/lighten) grounded in valuation, market structure, and momentum rather than just a spot price or sentiment score.

## Known failure modes

- Data feed unavailable — upstream price or on-chain data source is down
- Rate limiting or payment failure for x402 micropayment
- Stale data if on-chain indexer is lagging
- No response if Vercel serverless function cold-starts timeout

## How this service works

Fundamentals engine for the HYPE token (Hyperliquid): live price, funding and open interest, fees and buyback flywheel, P/S valuation percentile, perp market share, unlock absorption and RSI timing - scored into 3 axes (engine health, climate, momentum) with a synthesized buy/hold/lighten recommendation and buy-zone detection. Proprietary methodology, deterministic, no LLM.

## Output

Returns a structured fundamentals report for HYPE including live price, funding rate, open interest, fee revenue, buyback flywheel metrics, P/S valuation percentile, perp market share, unlock absorption, and RSI timing — all synthesized into three axis scores (engine health, climate, momentum) plus a final buy/hold/lighten recommendation and a buy-zone detection signal.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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",
     "properties": {}
    }
   },
   "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/hype-token-fundamentals-engine-7cca4df6/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)
