coinranking1
4.0
Coinranking1 is a multi-cryptocurrency platform server providing comprehensive cryptocurrency data.
Coinranking1 is a powerful multi-cryptocurrency platform (MCP) server designed to provide comprehensive cryptocurrency data to developers and businesses. It offers real-time and historical data on a wide range of cryptocurrencies, exchanges, and markets, ensuring high availability and low latency.
Features
- Crypto Prices: Access up-to-date prices for various cryptocurrencies, including Bitcoin, Ethereum, Dogecoin, and many more. Prices are available in numerous fiat currencies such as USD and EUR.
- Price History: Retrieve extensive historical price data, including all-time highs and lows.
- Market Metrics: Obtain details like market caps, ranks, and circulating supplies of cryptocurrencies.
- Project Information: Gain insights into cryptocurrency projects, including descriptions and social media links.
- Logos: Access SVG/PNG logos for all listed cryptocurrencies.
MCP Tools
- Get Coins: Retrieve a list of coins ordered by market cap, including statistics like 24-hour volume.
- Get Coin: Access detailed information about a specific coin.
- Get Coin Price: Obtain the price of a specific coin at a given time.
- Get Coin Price History: Retrieve historical price data for a coin over a specified period.
- Get Coin OHLC Data: Access Open High Low Close (OHLC) data for a coin (available in beta).
- Get Coin Exchanges: Find exchanges where a specific coin can be traded.
- Get Coin Markets: Discover markets on different exchanges where a specific coin is traded.
- Get Coin Supply: Retrieve information about the maximum, total, and circulating supply of a coin.
- Get Coin Issuance Blockchains: Access the blockchains on which a coin is issued.
- Get Coin Modifiers: Obtain modifiers of a coin's supply and their balance.
- Get Exchanges: Retrieve a list of exchanges ranked by trading volume.
- Get Exchange: Access detailed information about a specific exchange.
- Get Exchange Coins: Find coins listed on a specific exchange.
- Get Exchange Markets: Discover markets on a specific exchange.
- Get Markets: Retrieve a list of markets ranked by trading volume.
- Get Market: Access information on a specific market.
- Get Reference Currencies: Retrieve a list of reference currencies used for coins.
- Get Global Stats: Access global statistics about the available data.
- Get Search Suggestions: Use search suggestions to quickly find data on coins, exchanges, and markets.
- Get Coins Index: Access a list of all coins available for indexing.
- Get Exchanges Index: Access a list of all exchanges available for indexing.
Usage with Different Platforms
python
python
import requests
url = 'https://api.coinranking.com/v2/coins'
headers = {'x-access-token': 'your_api_key'}
response = requests.get(url, headers=headers)
data = response.json()
print(data)
javascript
javascript
const axios = require('axios');
const options = {
method: 'GET',
url: 'https://api.coinranking.com/v2/coins',
headers: {
'x-access-token': 'your_api_key'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});