> For the complete documentation index, see [llms.txt](https://cryptoman-1.gitbook.io/cryptoman-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cryptoman-1.gitbook.io/cryptoman-docs/getting-started/coinpaprika-api.md).

# CoinPaprika API

### How Cryptoman Uses CoinPaprika

* Default API Service: Automatically active when no CoinMarketCap API key is provided

Free Tier Limitations:

* 60 requests per hour
* 25,000 requests per month
* No API key required

### Features with CoinPaprika

```javascript
// Example of data structure 
{ 
  price: coin.quotes.USD.price, 
  percent_change_1h: coin.quotes.USD.percent_change_1h, 
  percent_change_24h: coin.quotes.USD.percent_change_24h, 
  volume_24h: coin.quotes.USD.volume_24h 
}
```

### What You Get

* Real-time USD price
* 1-hour price change
* 24-hour price change
* 24-hour trading volume
* Market rank
* Automatic fallback service

<br>
