# SixPath CoinGecko Price Lookup

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

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

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/coingecko-price
- Price: $0.197124/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-coingecko-price-lookup-d193d56b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-bukxaIxLyL7bZQ2taVPg

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

Example prompt: What's the current price of bitcoin and ethereum in USD? Use CoinGecko data — pass ids as 'bitcoin,ethereum' and vs_currencies as 'usd'.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call crypto price lookup backed by CoinGecko data without managing a CoinGecko API key. Ideal for agents needing real-time or near-real-time coin prices for one or more assets in a single request. The x402 micropayment model suits low-frequency lookups where a subscription is overkill.

## Known failure modes

- Invalid coin ID returns empty or missing key in response
- Unsupported vs_currency may return no data for that pair
- CoinGecko upstream downtime causes failure or stale data
- Payment failure via x402 protocol returns 402 error before data is served
- Malformed input (non-string ids or vs_currencies) may cause 400 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(s) in the specified vs_currencies — e.g. {"bitcoin":{"usd":67000},"ethereum":{"usd":3500}}. Priced at ~$0.197 USDC per call via x402 on Base chain.

## 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/sixpath-coingecko-price-lookup-d193d56b/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)
