coinpaprika1
3.9
Coinpaprika1 is a robust and efficient MCP server designed to deliver comprehensive and real-time market data from the world of cryptocurrency.
Coinpaprika1 MCP Server provides users with access to essential crypto data including coin prices, volumes, market caps, all-time highs (ATHs), return rates, and more. It is an invaluable tool for anyone interested in the cryptocurrency market, offering fast and free access to a wealth of information. The server supports high-frequency access, allowing up to 10 requests per second, and offers data from over 17 endpoints. It is cost-free, making it accessible to a wide range of users.
Features
- High Frequency Access: Supports up to 10 requests per second, allowing for more than 25 million calls per month.
- Comprehensive Data: Access data from over 17 endpoints, ensuring a broad view of the cryptocurrency landscape.
- Cost-Free: Enjoy all features without any associated costs.
Usage with Different Platforms
python
python
import requests
url = 'https://api.coinpaprika.com/v1/tickers'
response = requests.get(url)
data = response.json()
print(data)
javascript
javascript
fetch('https://api.coinpaprika.com/v1/tickers')
.then(response => response.json())
.then(data => console.log(data));