# TickersFeed Global Crypto Market Overview

> TickersFeed Global Crypto Market Overview is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a global cryptocurrency market snapshot including total market cap, 24h volume, Bitcoin dominance percentage, and active coin count.

## Facts

- Endpoint: GET https://api.tickersfeed.net/crypto/market
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-tickersfeed-net-f67319e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LumByfa1NRYN-1l6HHGFG

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 api-tickersfeed-net-f67319e3
```

Example prompt: What does the overall crypto market look like right now — total market cap, Bitcoin dominance, and how many coins are active?

## When to prefer this

Use this endpoint when you need a high-level macro view of the entire crypto market rather than data on a specific coin. Prefer this over per-coin endpoints (like BTC price) when the user wants to understand overall market conditions, Bitcoin dominance trends, or total market capitalization across all assets.

## Known failure modes

- Payment failure (x402) if USDC balance is insufficient — endpoint costs $0.001 per call
- Network timeout if the upstream market data aggregator is slow or unavailable
- Empty or stale data if the data provider has not refreshed market stats recently
- HTTP 500 if the backend aggregation pipeline encounters an error

## How this service works

Global cryptocurrency market statistics — total market cap, 24h volume, Bitcoin dominance, and active coin count as JSON. Use for: crypto market overview, total market cap check, dominance analysis, risk-on/risk-off assessment. $0.001 USDC per call.

## Output

Returns a market object with total_market_cap_usd (e.g. $2.5T), bitcoin_dominance_pct (e.g. 52.3%), and active_cryptocurrencies count (e.g. 10,000). No input parameters required.

## Example request

```json
{}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-tickersfeed-net-f67319e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
