# Bazaar Gateway Crypto Market Report

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

Fetches real-time prices from CoinGecko and uses Claude AI to generate a structured cryptocurrency market analysis report with sentiment, trends, risks, and opportunities.

## Facts

- Endpoint: GET https://bazaar-gateway.vercel.app/api/market-report
- Price: $0.02/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-vercel-app-471191ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P-YEmdEDviVQXYcArVD5_

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-vercel-app-471191ac
```

Example prompt: Give me an AI-generated market analysis report for bitcoin, ethereum, and solana — I want to know the current sentiment, market phase, key support and resistance levels, and the biggest risks and opportunities right now.

## When to prefer this

Choose this endpoint when you need a holistic, AI-synthesized view of the cryptocurrency market rather than just raw price data. It is ideal when you want sentiment analysis, macro context (fear & greed, BTC dominance), and actionable per-coin insights (support/resistance, risks, opportunities) in a single call. Prefer it over the raw prices endpoint (/api/crypto-prices) when the user wants interpretation, not just numbers. Best for agents building market summaries, investment briefings, or crypto newsletter content.

## Known failure modes

- CoinGecko API unavailable — price data cannot be fetched, endpoint returns error
- Requested coin ID not found on CoinGecko — missing_coins signal set true, partial results returned
- Claude AI generation failure — analysis object absent or degraded
- Rate limiting or payment failure — 402 Payment Required if USDC payment not processed
- Invalid coin ID format in query string — may return empty or partial coin list

## How this service works

AI-generated cryptocurrency market analysis report. Fetches real-time prices from CoinGecko then uses Claude AI to generate a professional market analysis with trends, risks, and opportunities.

## Output

Returns a structured JSON object including: a plain-text markdown-stripped report, a structured analysis object with overall_sentiment, market_phase, time_horizon, key_takeaway, per-coin sentiment with key support/resistance levels, risks, opportunities, and conviction scores; plus raw data_sources (CoinGecko per-coin metrics, fear & greed index, global market stats), boolean signals, the AI model used, and a generated_at timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "coins": "bitcoin,ethereum,solana"
  }
 }
}
```

## 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": {
      "coins": {
       "type": "string",
       "description": "Comma-separated coin IDs to analyze. Defaults to bitcoin,ethereum,solana."
      }
     }
    }
   },
   "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-vercel-app-471191ac/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)
