# Vibes API Hub – CoinGecko Price Lookup

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

Fetches current cryptocurrency prices for one or more coins in specified fiat or crypto currencies via the CoinGecko price endpoint.

## Facts

- Endpoint: POST https://vibes-coral-tau.vercel.app/api/coingecko-price
- Price: $0.045203/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-price-lookup-1810b306
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__mLZ00frRJ11z2bENXXH5

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-price-lookup-1810b306 -d '<json body>'
```

Example prompt: What are the current prices of bitcoin and ethereum in USD? Use the CoinGecko price lookup.

## When to prefer this

Choose this endpoint when you need fast, pay-per-call cryptocurrency price lookups without managing a CoinGecko API key or subscription. Ideal for agents that need occasional spot prices for one or more coins in one or more currencies, especially in x402-enabled micropayment workflows on Base chain.

## Known failure modes

- Invalid coin ID (CoinGecko does not recognize the id string) — returns empty or error response
- Invalid vs_currency string — may return empty object or error
- Network or upstream CoinGecko API outage — 5xx error
- Payment failure on Base chain via x402 — 402 response, call not executed
- Missing required fields (ids or vs_currencies) — malformed request 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

Returns a JSON object mapping each requested coin ID to its price in each requested vs_currency. For example: {"bitcoin":{"usd":67000},"ethereum":{"usd":3500}}.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ids": {
   "type": "string"
  },
  "vs_currencies": {
   "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-price-lookup-1810b306/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)
