# Crypto Global Market Overview

> Crypto Global Market Overview is a paid API for AI agents from crypto.apitoll.cloud, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a single-call snapshot of the entire crypto market: total market cap, 24h volume, BTC/ETH dominance percentages, 24h market-cap change, and counts of active cryptocurrencies and markets, sourced from CoinGecko.

## Facts

- Endpoint: GET https://crypto.apitoll.cloud/v1/crypto/global
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-global-market-overview-1b7cddfb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E9BE3iZXh09UMhENWK0qA

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 crypto-global-market-overview-1b7cddfb
```

Example prompt: Give me the current global crypto market snapshot — total market cap, 24h volume, and Bitcoin and Ethereum dominance percentages right now.

## When to prefer this

Use this endpoint when you need a high-level macro view of the entire crypto market in a single call — especially BTC/ETH dominance, total market cap, or overall 24h momentum — rather than data on a specific coin or protocol. Ideal for dashboards, market summaries, or sentiment checks.

## Known failure modes

- Upstream CoinGecko data unavailable: may return stale or error response
- Payment failure (402): USDC payment not completed, endpoint inaccessible
- Rate limiting or quota exceeded: too many calls in a short period
- Network timeout: external data source slow to respond

## How this service works

A snapshot of the total crypto market: aggregate market capitalization in USD, 24-hour trading volume, Bitcoin and Ethereum dominance percentages, 24h market-cap change, and the number of active cryptocurrencies and markets. The macro view in one call. Sourced from CoinGecko.

## Output

A JSON object containing: totalMarketCapUsd (aggregate market cap in USD), totalVolume24hUsd (24h trading volume), btcDominancePct (Bitcoin's market share %), ethDominancePct (Ethereum's market share %), marketCapChange24hPct (24h change in total market cap), activeCryptocurrencies (count of active coins), markets (count of active markets), asOf (timestamp), and source attribution (CoinGecko).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asOf": "2026-06-15T12:00:00.000Z",
  "source": {
   "name": "CoinGecko"
  },
  "markets": 1100,
  "btcDominancePct": 56.5,
  "ethDominancePct": 13.2,
  "totalMarketCapUsd": 2350000000000,
  "totalVolume24hUsd": 95000000000,
  "marketCapChange24hPct": -1.4,
  "activeCryptocurrencies": 17000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-global-market-overview-1b7cddfb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.apitoll.cloud](https://www.zero.xyz/host/crypto.apitoll.cloud/llms.txt)
