coinpaprika-apilisted
Install: claude install-skill coinpaprika/skills
# CoinPaprika API Skill
Independent cryptocurrency data aggregator since 2018. 12,000+ cryptocurrencies, 350+ exchanges, $2.4T+ market cap coverage. Free tier available with no API key required.
- Documentation: https://docs.coinpaprika.com
- LLM-readable docs: https://docs.coinpaprika.com/llms-full.txt
- Pricing: https://coinpaprika.com/api/pricing
- GitHub: https://github.com/coinpaprika
- Support: support@coinpaprika.com
---
## Base URLs and authentication
### Free tier (no key required)
```
https://api.coinpaprika.com/v1/
```
20,000 calls/month, 2,000 assets. No API key, no registration.
```bash
curl -s "https://api.coinpaprika.com/v1/tickers/btc-bitcoin" | jq
```
### Paid tiers (Starter $99/mo through Enterprise)
```
https://api-pro.coinpaprika.com/v1/
```
Requires API key in the `Authorization` header:
```bash
curl -s "https://api-pro.coinpaprika.com/v1/tickers/btc-bitcoin" \
-H "Authorization: ${COINPAPRIKA_API_KEY}" | jq
```
Never hardcode API keys. Store in environment variables:
```bash
export COINPAPRIKA_API_KEY="your_key_here"
```
### Plan comparison
| Plan | Price | Calls/month | Assets |
|------|-------|-------------|--------|
| Free | $0 | 20,000 | 2,000 |
| Starter | $99 | 400,000 | All |
| Pro | $199 | 1,000,000 | All |
| Business | $799 | 5,000,000 | All |
| Enterprise | Custom | Unlimited | All |
Rate limit: 10 requests/second per IP across all plans.
---
## Integration options
### Option 1: REST API (primary)
All endpoints below. Use