# CryptoCompare Market Data, Already Integrated

Access CryptoCompare via Uniblock's unified blockchain API. Real-time and historical market data from CryptoCompare. Normalized and delivered without extra overhead.

CRYPTOCOMPARE INCLUDED IN UNIFIED ENDPOINTS

### Endpoints
- [GET market/data/trending: Get current price for a symbol](https://docs.uniblock.dev/api-reference/token/get-address-token-balances#get-address-token-balances)
- [GET market/data/chart/range: Get blockchain analytics data](https://docs.uniblock.dev/api-reference/nft/get-nft-collection-metadata#get-nft-collection-metadata)
- [GET market/data/price: Get OHLCV historical daily data](https://docs.uniblock.dev/api-reference/transaction/get-address-transactions)
- [GET market/data/history: Get top coins by market cap](https://docs.uniblock.dev/api-reference/token/get-token-metadata)
- [GET market/data/24/hour/volume: Get latest social stats for a coin](https://docs.uniblock.dev/api-reference/nft/get-nft-metadata)
- [GET market/data/price: Get exchange volume data](https://docs.uniblock.dev/api-reference/nft/get-wallet-nft-balances)

## Use Cases
- AIRDROP-CAMPAIGNS
- BLOCKCHAIN-ANALYTICS
- DEFI-PLATFORMS
- MARKETPLACE

Turn integrations into your Web3 edge. Boost sales, reduce code, and eliminate headaches with Uniblock's seamless CryptoCompare integration.

### Focus on your core product
Stop diverting your engineers to yet another integration and let them get back to work.

### Give customer success a break
Manage your simplified integration issues in a single pane. No therapist required.

### Stop Losing Sales to Integration Delays
Launch Web3 integrations in days, not quarters. Your sales team will thank you.

## CryptoCompare API Example

### Input
```javascript
const options = {method: 'GET', headers: {accept: 'application/json'}};

fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=ETH%2CUSDT%2CSOL&provider=CryptoCompare', options)

.then(response => response.json())

.then(response => console.log(response))

.catch(err => console.error(err));
```

### Output
```json
{
  "ETH": {
    "usd": 2652.48
  },
  "USDT": {
    "usd": 1
  },
  "SOL": {
    "usd": 155.96
  }
}
```

#### About CryptoCompare
CryptoCompare is a global cryptocurrency market data platform offering real-time and historical pricing, OHLCV data, and social signals across thousands of digital assets and exchanges.
