# Bazaar Gateway Crypto Indicator Deep Dive

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

Returns a comprehensive deep-dive on a single crypto macro indicator including definition, formula, status thresholds, current value, recent stats, and 30-point historical data.

## Facts

- Endpoint: GET https://bazaar-gateway.vercel.app/api/crypto-indicator
- Price: $0.003/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-crypto-indicator-deep-dive-8eef1989
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SLAhGppitH1xLUqGUQ9N-

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-crypto-indicator-deep-dive-8eef1989
```

Example prompt: Give me a full deep-dive on the Bitcoin MVRV Z-score indicator — I want the definition, formula, current value, status thresholds, and the 30-point historical chart.

## When to prefer this

Choose this endpoint when you need a rich, single-indicator analysis with historical context and interpretive guidance — not just a raw price or a multi-indicator snapshot. Ideal for agents building market analysis reports, answering nuanced macro questions about crypto health, or needing threshold-based status labels alongside raw values. Prefer the multi-indicator snapshot sibling endpoint if you need a quick overview of all 9 indicators at once.

## Known failure modes

- Missing or invalid 'name' query parameter returns an error — must be one of the 9 valid indicator IDs
- Unsupported indicator name (e.g. 'eth-dominance') returns a 400-level error
- Payment not completed (x402 protocol) results in 402 Payment Required before data is returned
- Upstream data source unavailability may cause stale or missing current value

## How this service works

Deep dive on one crypto macro indicator: definition, formula, exact status thresholds, current value, recent stats and a 30-point history, plus an agent reading guide. Valid names: fear-greed, btc-dominance, funding-rates, mvrv-zscore, hash-rate, active-addresses, net-liquidity, stablecoin-supply, altcoin-mcap.

## Output

A rich JSON object containing the indicator's definition, calculation formula, exact status thresholds (e.g. extreme fear, neutral, greed), current numeric value, recent statistical summary, a 30-point historical data series, and an agent-oriented reading guide explaining how to interpret the data.

## 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": "Indicator id: fear-greed | btc-dominance | funding-rates | mvrv-zscore | hash-rate | active-addresses | net-liquidity | stablecoin-supply | altcoin-mcap"
      }
     }
    }
   },
   "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-crypto-indicator-deep-dive-8eef1989/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)
