# CoinGecko Live Crypto Prices (USD)

> CoinGecko Live Crypto Prices (USD) is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns live cryptocurrency prices in USD for one or more coins, sourced from CoinGecko, via a simple GET request with coin IDs.

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/crypto
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-live-crypto-prices-usd-c02d0691
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lwpY3PiuFhwdqVLyRxip9

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 coingecko-live-crypto-prices-usd-c02d0691
```

Example prompt: What are the current USD prices for bitcoin and nano right now?

## When to prefer this

Use this endpoint when you need real-time USD prices for one or more specific cryptocurrencies identified by their CoinGecko coin IDs. Prefer this over exchange-specific price APIs when you want broad multi-coin coverage sourced from CoinGecko's aggregated market data.

## Known failure modes

- Invalid or unrecognized coin ID returns empty result or error
- Missing 'ids' query parameter may return empty data
- CoinGecko rate limits or downtime cause upstream failures
- Network timeout if CoinGecko API is slow

## How this service works

Live crypto prices in USD (CoinGecko). ?ids=bitcoin,nano

## Output

A JSON object mapping each requested CoinGecko coin ID to its current price in USD, e.g. {"bitcoin": {"usd": 67000}, "nano": {"usd": 1.12}}.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "ids": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-live-crypto-prices-usd-c02d0691/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
