Migration
CryptoCompare Alternative for Market Data API
PriceFeed mirrors the CryptoCompare /data endpoints — the same fsym/fsyms/tsyms parameters and response shapes — so migrating most integrations is a one-line host swap.
Before → after
- https://min-api.cryptocompare.com/data/price?fsym=BTC&tsyms=USD,EUR + https://pricefeed.online/data/price?fsym=BTC&tsyms=USD,EUR
Why developers migrate
- Drop-in compatible /data/price, /data/pricemulti and /data/pricemultifull endpoints.
- Median aggregation across multiple independent sources (Binance, Kraken, Coinbase, OKX, WhiteBIT, NBU, ECB and more).
- Crypto, fiat and precious metals in one API — including UAH pairs (BTC/UAH, USDT/UAH, USD/UAH).
- Cached, normalized responses — requests never trigger external API calls.
- MCP tools for LLM agents on top of the same data.
Compatible endpoints
| CryptoCompare | PriceFeed | Returns |
|---|---|---|
| /data/price | /data/price | Single base → multiple quotes price map. |
| /data/pricemulti | /data/pricemulti | Multiple bases → multiple quotes price matrix. |
| /data/pricemultifull | /data/pricemultifull | Full RAW + DISPLAY with PRICE, CHANGEPCT24HOUR, OPEN24HOUR, VOLUME24HOUR. |
Migration in 3 steps
- Replace the host
https://min-api.cryptocompare.com→https://pricefeed.online. - Keep your existing paths and query params —
/data/price?fsym=BTC&tsyms=USD,EURworks as-is. - Parse the same response keys (
RAW/DISPLAY,PRICE,CHANGEPCT24HOUR).
curl — multi-symbol price
$ curl "https://pricefeed.online/data/pricemulti?fsyms=BTC,ETH&tsyms=USD,UAH"
FAQ
Is PriceFeed a drop-in replacement for CryptoCompare?
For the price, pricemulti and pricemultifull endpoints — yes. The parameters and response shapes match, so swapping the host is usually enough.
Where do the rates come from?
Each rate is a median across multiple independent sources (crypto exchanges plus official fiat providers like NBU and ECB), so a single bad source cannot skew the result.
Does it support UAH and precious metals?
Yes. PriceFeed covers UAH pairs and precious metals (XAU, XAG, XPT, XPD) in addition to major crypto and fiat currencies.