# WebberSites Crypto Market Report

> WebberSites Crypto Market Report is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a structured market intelligence report for a cryptocurrency asset, including price, market cap rank, momentum signals, volatility, liquidity, and distance from all-time high.

## Facts

- Endpoint: GET https://api.webbersites.com/api/report/%7Bcoin%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-crypto-market-report-42dd4ef5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LcZECgruVfzCmA-gzpXNU

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 webbersites-crypto-market-report-42dd4ef5
```

Example prompt: Give me a full market report for Ethereum — price, momentum, volatility, liquidity, how far it is from its all-time high, and a plain-English summary of where it stands right now.

## When to prefer this

Choose this endpoint when you need a compact, pre-interpreted market intelligence snapshot for a single crypto asset — especially when you want both raw numbers (price, % changes) and qualitative signals (momentum, volatility, liquidity tier) in one call, without having to compute or classify them yourself. Prefer this over raw exchange APIs or CoinGecko directly when you want a human-readable summary bundled with structured signals for agent consumption at $0.02 per call.

## Known failure modes

- Invalid or unrecognized CoinGecko asset ID returns an error or empty response
- Coin not tracked by CoinGecko results in a 404 or error
- Network or upstream CoinGecko data unavailability causes a timeout or 5xx error
- Missing required 'coin' query parameter causes a validation error
- Stale data if CoinGecko upstream cache has not refreshed recently

## How this service works

WebberSites – Branding, Web Design, Photography, Marketing Strategy - Youngstown Ohio

## Output

A JSON object containing the coin's CoinGecko ID, ticker symbol, current USD price, market cap rank, 24h/7d/30d price change percentages, distance from all-time high, and a signals object with categorical assessments for momentum (bullish/neutral/bearish), trend direction over 7d and 30d, volatility level, liquidity tier, market cap tier, and volume-to-market-cap percentage — plus a pre-written human-readable summary sentence.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "coin"
     ],
     "properties": {
      "coin": {
       "type": "string",
       "description": "CoinGecko asset id, e.g. bitcoin, ethereum, solana"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "coin": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "signals": {
       "type": "object"
      },
      "summary": {
       "type": "string"
      },
      "price_usd": {
       "type": "number"
      },
      "from_ath_pct": {
       "type": "number"
      },
      "change_7d_pct": {
       "type": "number"
      },
      "change_24h_pct": {
       "type": "number"
      },
      "change_30d_pct": {
       "type": "number"
      },
      "market_cap_rank": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "ethereum",
  "symbol": "ETH",
  "signals": {
   "cap_tier": "mega",
   "momentum": "neutral",
   "trend_7d": "down",
   "liquidity": "high",
   "trend_30d": "up",
   "volatility": "moderate",
   "volume_to_mcap_pct": 4.1
  },
  "summary": "Ethereum (ETH) ranks #2 by market cap and trades at $1,570.13. It is +0.2% over 24 hours, -4.3% over the week, +8.1% over 30 days. Momentum is neutral, while volatility is moderate and liquidity is high (24h volume is 4.1% of market cap). It trades 67.8% below its all-time high of $4,878.26.",
  "price_usd": 1570.13,
  "from_ath_pct": -67.8,
  "change_7d_pct": -4.3,
  "change_24h_pct": 0.19,
  "change_30d_pct": 8.1,
  "market_cap_rank": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-crypto-market-report-42dd4ef5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
