# Prysm CoinGecko Provider

> Prysm CoinGecko Provider is a paid API for AI agents from prysm-kappa.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Proxies CoinGecko cryptocurrency market data operations through Prysm's x402 pay-per-call gateway on Base mainnet

## Facts

- Endpoint: POST https://prysm-kappa.vercel.app/api/v1/providers/coingecko
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prysm-coingecko-provider-2eb41484
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bN3x9QxYWNbcO7BIGBiZZ

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 prysm-coingecko-provider-2eb41484 -d '<json body>'
```

Example prompt: Can you grab the current price of Ethereum and Bitcoin in USD from CoinGecko via Prysm — use the simple_price operation with ids 'ethereum,bitcoin' and vs_currencies 'usd'?

## When to prefer this

Choose this endpoint when you need CoinGecko market data in an autonomous agent context that supports x402 micropayments on Base mainnet, and want a single pay-per-call interface without managing a CoinGecko API key. Ideal for low-frequency lookups where $0.05/call is acceptable and agent-native crypto payment is preferred over traditional API key billing.

## Known failure modes

- Invalid or unsupported operation name returns an error (operation not on allowlist)
- Malformed input parameters rejected by CoinGecko upstream (e.g. unknown coin ID)
- Payment failure via x402 (insufficient USDC balance or Base mainnet transaction failure)
- CoinGecko rate limits or downtime propagated as upstream error
- Missing required 'operation' field causes request rejection

## How this service works

Prysm sells paid, agent-ready provider capabilities over x402 on Base mainnet using USDC.

## Output

A JSON object with a 'data' field containing the CoinGecko API response (e.g. price maps, market cap, volume), a 'provider' field set to 'coingecko', and an 'operation' field echoing the requested operation name.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "description": "Provider-specific operation parameters.",
   "additionalProperties": true
  },
  "operation": {
   "type": "string",
   "description": "Allowlisted operation for the selected provider."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "provider": "coingecko",
  "operation": "simple_price"
 }
}
```

## More

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