# GGWP CoinGecko Price API

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

Fetches current cryptocurrency price data from CoinGecko via a pay-per-call x402 endpoint

## Facts

- Endpoint: POST https://ggwp-ten.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/ggwp-coingecko-price-api-f0ba80c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dSAWVbti1-iVTtxwwTorU

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 ggwp-coingecko-price-api-f0ba80c2 -d '<json body>'
```

Example prompt: What's the current price of Bitcoin in USD? Use the CoinGecko price lookup.

## When to prefer this

Choose this endpoint when you need real-time or near-real-time cryptocurrency price lookups sourced specifically from CoinGecko data, paid per-call via the x402 protocol on Base chain — particularly useful for agents that need on-demand pricing without a long-term subscription.

## Known failure modes

- Unsupported or misspelled coin ID returns an error or empty result
- Network timeout from the underlying CoinGecko API
- Payment failure via x402 protocol prevents the call from completing
- Rate limiting on the CoinGecko data source causing delayed or failed responses
- Invalid input schema structure returns a malformed response

## 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 an object containing current cryptocurrency price data sourced from CoinGecko, including the price of the requested coin/token, typically denominated in USD or another quote currency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "API response data"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "result": {
   "data": "example response"
  }
 },
 "properties": {
  "result": {
   "type": "object",
   "description": "API response data"
  }
 }
}
```

## More

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