# Vibes API Hub – CoinGecko Markets

> Vibes API Hub – CoinGecko Markets is a paid API for AI agents from vibes-coral-tau.vercel.app, paid per call via x402, $0.095674/call, status unknown (last checked 2026-09-14).

Fetches a paginated list of cryptocurrency market data (prices, rankings, volume, etc.) for a given fiat currency using the CoinGecko markets feed.

## Facts

- Endpoint: POST https://vibes-coral-tau.vercel.app/api/coingecko-markets
- Price: $0.095674/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-api-hub-coingecko-markets-9f5ddb42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FO_XyEMuJQVEkRvW3ViWQ

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 vibes-api-hub-coingecko-markets-9f5ddb42 -d '<json body>'
```

Example prompt: Show me the top 25 cryptocurrencies by market cap priced in USD — I want to see current prices, rankings, and volume.

## When to prefer this

Choose this endpoint when you need a broad market overview of many cryptocurrencies at once — ranked by market cap — rather than a deep dive on a single coin. It is ideal for building leaderboards, dashboards, or daily briefings. Prefer this over single-coin endpoints when the user wants a list or ranking. The x402 pay-per-call model makes it cost-effective for on-demand queries rather than continuous polling.

## Known failure modes

- Invalid vs_currency value returns an error or empty result
- per_page value out of supported range may cause a 400 or unexpected truncation
- CoinGecko rate limits or downtime may result in 502/503 responses from the proxy
- Missing required vs_currency may default or fail depending on server implementation
- Payment failure on Base chain blocks the call before it reaches CoinGecko

## 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

Returns a JSON array of cryptocurrency market objects, each containing coin ID, name, symbol, current price in the requested currency, market cap, 24-hour trading volume, price change percentages, and market cap rank — sourced from CoinGecko's markets endpoint.

## 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/vibes-api-hub-coingecko-markets-9f5ddb42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coral-tau.vercel.app](https://www.zero.xyz/host/vibes-coral-tau.vercel.app/llms.txt)
