# Crypto Market Overview Snapshot API

> Crypto Market Overview Snapshot API is a paid API for AI agents from nonvisceral-eloisa-mousily.ngrok-free.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a one-call market snapshot bundle with BTC/ETH/GOLD prices, RSI-14, regime direction, perpetual funding rates, open interest, Fear & Greed index, and composite sentiment signal sourced from Hyperliquid DEX.

## Facts

- Endpoint: GET https://nonvisceral-eloisa-mousily.ngrok-free.dev/api/market-overview
- 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/nonvisceral-eloisa-mousily-ngrok-free-dev-0bb80fcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FDCGq7-0fbSNhepkNhTHG

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 nonvisceral-eloisa-mousily-ngrok-free-dev-0bb80fcb
```

Example prompt: Give me a full crypto market snapshot right now — BTC and ETH prices, their RSI and funding rates, open interest, the Fear and Greed index, and whether the overall sentiment is bullish or bearish.

## When to prefer this

Choose this endpoint when you need a single low-cost call ($0.01) to bootstrap a trading agent's decision context with BTC, ETH, and gold prices plus technical indicators, funding rates, open interest, and sentiment — all in one response. Prefer it over calling individual signal endpoints separately when latency and cost efficiency matter, or when building a per-tick market snapshot for an automated trading loop.

## Known failure modes

- Payment not received or invalid x402 payment header — endpoint returns 402 Payment Required
- Upstream Hyperliquid DEX data unavailable — may return stale or partial asset data
- ngrok free-tier tunnel down or rate-limited — returns 502 or connection timeout
- GOLD regime field may be null if EMA signal is not computable
- ETH direction/regime may be null in low-volatility periods

## How this service works

Real-time cryptocurrency market data API — one-call market snapshot bundle for trading agents. Returns Bitcoin BTC price, Ethereum ETH price, gold XAU price, RSI indicator, market trend direction, perpetual funding rates, open interest, Fear and Greed index, and composite sentiment signal. Live trading data from Hyperliquid DEX. Low-cost gateway endpoint ($0.01) — ideal first call for agents discovering the API surface or building a per-tick decision context.

## Output

A JSON object containing per-asset data (BTC, ETH, GOLD) including current price, RSI-14, EMA regime direction, perpetual funding rate, open interest, and direction confidence; plus a composite sentiment object with short-term and long-term signals; Fear and Greed index value and label; and an updated_at ISO timestamp.

## 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",
     "properties": {
      "assets": {
       "type": "object",
       "description": "Per-asset price, RSI-14, EMA regime direction, funding rate, open interest"
      },
      "sentiment": {
       "type": "object",
       "description": "Composite sentiment direction (short-term and long-term)"
      },
      "fear_greed": {
       "type": "object",
       "description": "Crypto Fear & Greed Index (0-100)"
      },
      "updated_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nonvisceral-eloisa-mousily-ngrok-free-dev-0bb80fcb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nonvisceral-eloisa-mousily.ngrok-free.dev](https://www.zero.xyz/host/nonvisceral-eloisa-mousily.ngrok-free.dev/llms.txt)
