# x402-data-api Crypto Market Report

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

Returns enriched crypto market data for a single asset including price, market cap, 24h volume, momentum signals, and market-cap-tier classification.

## Facts

- Endpoint: GET https://x402-data-api.onrender.com/api/report/:coin
- 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/x402-data-api-crypto-market-report-a1321bc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vu7Oen_N4YytsP9rXrmbT

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 x402-data-api-crypto-market-report-a1321bc2
```

Example prompt: Give me the enriched market report for solana — I want the current price, market cap, 24h volume, and any momentum or market-cap-tier signals.

## When to prefer this

Use this endpoint when an agent needs quick, enriched market context for a single crypto asset — particularly when derived signals like momentum and market-cap-tier are needed alongside raw price/volume data, rather than just raw ticker data. Ideal for single-asset lookups rather than portfolio-wide scans.

## Known failure modes

- Invalid or unrecognized CoinGecko asset ID returns an error response
- CoinGecko upstream downtime may cause stale or failed responses
- Payment not processed results in 402 response blocking data access
- Rate limits or network issues on Render hosting may cause timeouts

## How this service works

Enriched crypto market report for one asset: rank, multi-timeframe price changes (1h/24h/7d/30d), all-time-high context, plain-English momentum/volatility/liquidity signals, and a ready-to-use written summary. For agents needing market context, not just a price.

## Output

Returns a JSON object with the coin identifier, current price in USD, 24h percentage change, market cap in USD, 24h trading volume in USD, and derived signals including momentum indicator and market-cap-tier classification.

## 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"
      }
     }
    }
   }
  }
 }
}
```

## More

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