# x402 Crypto Data APIs – Market Overview

> x402 Crypto Data APIs – Market Overview is a paid API for AI agents from x402-crypto-apis.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a real-time cryptocurrency market overview including top 5 assets by price/change, sentiment status, and major asset data, paid via x402 micropayment protocol.

## Facts

- Endpoint: GET https://x402-crypto-apis.onrender.com/api/crypto/overview
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-crypto-data-apis-market-overview-7f879305
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CIYQYVLfsnUrBoqp7x2CS

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-crypto-data-apis-market-overview-7f879305
```

Example prompt: Give me a full crypto market overview right now — show me the top 5 coins with their prices and 24-hour changes, overall market sentiment, and how confident that sentiment reading is.

## When to prefer this

Choose this endpoint when you need a broad, single-call snapshot of the entire crypto market — top assets, 24h performance, and overall sentiment — rather than deep data on a single coin. Ideal for dashboards, daily briefings, or agent workflows that need a quick market pulse before making decisions. The x402 micropayment model means no API key management is needed.

## Known failure modes

- Payment failure: x402 payment not fulfilled or wallet has insufficient USDC balance
- Rate limiting or server overload on the Render-hosted service
- CoinGecko upstream API outage causing stale or missing data
- Invalid format parameter returns malformed or empty response
- Network timeout from the Render free-tier hosting (cold start latency)

## How this service works

AI Agent cryptocurrency data APIs with x402 v2 payment protocol. Real-time prices, market data, trading signals, and market overview powered by CoinGecko.

## Output

Returns a JSON object with an array of the top 5 cryptocurrencies (symbol, price, 24h change), a sentiment object (status and confidence), and a major_assets object with data on prominent crypto assets. Costs $0.05 USDC via x402 payment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "full",
    "summary"
   ],
   "type": "string",
   "description": "Response detail level"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "top_5": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "price": {
      "type": "number"
     },
     "symbol": {
      "type": "string"
     },
     "change_24h": {
      "type": "number"
     }
    }
   }
  },
  "sentiment": {
   "type": "object",
   "properties": {
    "status": {
     "type": "string"
    },
    "confidence": {
     "type": "string"
    }
   }
  },
  "major_assets": {
   "type": "object"
  }
 }
}
```

## More

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