# SixPath CoinGecko Markets

> SixPath CoinGecko Markets is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.143687/call, status unknown (last checked 2026-09-14).

Fetches cryptocurrency market data (prices, rankings, volumes) for multiple coins via CoinGecko, paginated and denominated in a chosen currency.

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/coingecko-markets
- Price: $0.143687/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-coingecko-markets-47758252
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aS7iSt2eFeKYEJNlu0TsH

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 sixpath-coingecko-markets-47758252 -d '<json body>'
```

Example prompt: Show me the top 25 cryptocurrencies by market cap priced in USD right now.

## When to prefer this

Use this endpoint when you need a ranked, paginated list of cryptocurrency market data (prices, volumes, market caps) and want pay-per-call access without a subscription — especially when already using the SixPath API Hub for other data types.

## Known failure modes

- Invalid vs_currency value returns an error or empty result
- per_page out of supported range may return an error
- CoinGecko rate limit upstream may cause 429 or timeout
- Payment failure on x402 protocol blocks the call
- Missing required vs_currency may default or error

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

A list of cryptocurrency market entries including coin name, symbol, current price, market cap, 24h volume, price change percentage, and rank, paginated according to per_page and denominated in the requested vs_currency.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-coingecko-markets-47758252/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
