# Sepivip Seekerclaw Seekerclaw

> Crypto Prices

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

---


# Crypto Prices

Get cryptocurrency prices using the free CoinGecko API.

## Use when
- Crypto prices ("What's Bitcoin at?", "SOL price")
- Market data ("Is ETH up or down?")
- Multiple coins ("Price of BTC, ETH, and SOL")

## Don't use when
- Swap or trade tokens (use wallet/Jupiter tools)
- Crypto news or analysis (use news or research)
- Wallet balances (use wallet tools)

## API Endpoints

### Get single coin price
```javascript
web_fetch({
  url: "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd"
})
```

### Get multiple coins with 24h change
```javascript
web_fetch({
  url: "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd&include_24hr_change=true"
})
```

## Coin ID Mapping

| Symbol | CoinGecko ID |
|--------|--------------|
| BTC | bitcoin |
| ETH | ethereum |
| SOL | solana |
| USDC | usd-coin |
| DOGE | dogecoin |
| ADA | cardano |
| XRP | ripple |

## Response Format

Present prices clearly:
```
Bitcoin (BTC): $45,123.45 (+2.3% 24h)
Ethereum (ETH): $2,456.78 (-1.2% 24h)
```

## Rate Limits

CoinGecko free tier: 10-30 requests/minute.

---
> Source: [sepivip/SeekerClaw](https://github.com/sepivip/SeekerClaw) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-07-04 -->

