Built for builders in crypto.

Fintechs, advisors, aggregators, and publishers use the Bitcompare API to power dashboards, research, and content — replacing fragile scraping with a single integration.

javascript
const res = await fetch(
  'https://api.bitcompare.net/api/v1/prices/summary',
  { headers: { 'x-api-key': key } }
)
const { data } = await res.json()

const value = holdings.reduce((sum, h) =>
  sum + h.amount * data[h.symbol].price_usd, 0
)
Portfolio value: $77,285.39
24h change: +$1,842.17 (+2.4%)
Coverage

Comprehensive data for every crypto use case.

One API gives you normalized rates, metadata, and analytics from dozens of CeFi and DeFi providers — covering the entire crypto market.

50+

Rate providers with lending, staking, and borrowing yields.

19,000+

Coins tracked with metadata, rankings, and network addresses.

Use cases

What teams are building.

See how companies use the Bitcompare API to replace scraping and build production crypto products.

Rate Comparison Dashboards

Compare lending, staking, and borrowing rates across 50+ providers. Help users find the best yields and build comparison tools that stay up-to-date automatically.

See code examples
bash
$ curl "https://api.bitcompare.net/api/v1/rates/ETH?category=staking" \
  -H "x-api-key: YOUR_KEY" \
  | jq '.data | sort_by(-.apy) | .[0:3]'
[
  {
    "provider": "Lido",
    "category": "staking",
    "apy": 3.24
  },
  {
    "provider": "Rocket Pool",
    "category": "staking",
    "apy": 3.12
  },
  {
    "provider": "Coinbase",
    "category": "staking",
    "apy": 2.89
  }
]

Portfolio Trackers

Build portfolio dashboards with real-time spot rates for 19,000+ assets. Track holdings, P&L, and allocation across wallets and exchanges.

See code examples
javascript
const res = await fetch(
  'https://api.bitcompare.net/api/v1/prices/summary',
  { headers: { 'x-api-key': key } }
)
const { data } = await res.json()

const value = holdings.reduce((sum, h) =>
  sum + h.amount * data[h.symbol].price_usd, 0
)
Portfolio value: $77,285.39
24h change: +$1,842.17 (+2.4%)

Market Research & Publishing

Power research reports and content with market sentiment, Fear & Greed data, top movers, and global stats. All data licensed for commercial publishing on Pro plans.

See code examples
javascript
const res = await fetch(
  'https://api.bitcompare.net/api/v1/global-stats/summary'
)
const { data } = await res.json()
{
  "market_cap_usd": 3420000000000,
  "volume_24h_usd": 142000000000,
  "btc_dominance": 54.2,
  "fear_greed_index": 72,
  "fear_greed_label": "Greed"
}

Stablecoin Monitoring

Track peg stability, chain distribution, and regulatory status for 14 major stablecoins. Build risk dashboards and compliance reports.

See code examples
bash
$ curl https://api.bitcompare.net/api/v1/stablecoins/index
{
  "data": [
    {
      "symbol": "USDT",
      "stability_score": 98,
      "peg_deviation": 0.0002
    },
    {
      "symbol": "USDC",
      "stability_score": 99,
      "peg_deviation": 0.0001
    },
    {
      "symbol": "DAI",
      "stability_score": 96,
      "peg_deviation": 0.0008
    }
  ]
}

Ready to start building?

Public endpoints work without an API key. Sign up for free to unlock higher limits and commercial use.