# Crypto Price

> Get cryptocurrency prices using CoinGecko API. No API key required. Use when this capability is needed.

- Skill: `tomevault-io/crypto-price` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/crypto-price`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/crypto-price/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/crypto-price

---


# Crypto Price

Query real-time cryptocurrency prices using the free CoinGecko API.

## Quick Price Check

Use `exec` with curl to fetch prices:

```bash
# Get Bitcoin price in USD
curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd"

# Get Ethereum price in multiple currencies
curl -s "https://api.coingecko.com/api/v3/simple/price?ids=ethereum&vs_currencies=usd,eur,btc"

# Get multiple coins at once
curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd"
```

## Response Format

```json
{
  "bitcoin": { "usd": 45000.50 },
  "ethereum": { "usd": 2500.25, "eur": 2300.10, "btc": 0.055 }
}
```

## Common Coin IDs

| Coin | CoinGecko ID |
|------|--------------|
| Bitcoin | `bitcoin` |
| Ethereum | `ethereum` |
| Solana | `solana` |
| BNB | `binancecoin` |
| Polygon | `matic-network` |
| Arbitrum | `arbitrum` |
| Avalanche | `avalanche-2` |

## Supported Currencies

`usd`, `eur`, `gbp`, `jpy`, `cny`, `btc`, `eth`

## Error Handling

- If coin not found: suggest common IDs like 'bitcoin', 'ethereum', 'solana'
- If currency not supported: suggest 'usd', 'eur', 'btc'
- Rate limits: CoinGecko free tier allows 10-30 calls/minute

## Example Workflow

1. User asks: "What's the ETH price?"
2. Run: `curl -s "https://api.coingecko.com/api/v3/simple/price?ids=ethereum&vs_currencies=usd"`
3. Parse JSON response
4. Reply: "Ethereum is currently $2,500.25 USD"

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/owliabot) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

