Developer hub·REST · WebSocket · MCP

Build with Bitcompare.
One API, every crypto rate.

Real-time interest rates across 100+ providers, coin metadata for 500+ assets, aggregated prices, market stats, and stablecoin stability. Available as REST, WebSocket streams, or MCP tools for Claude.

Free tier available. WebSocket and bulk endpoints unlock at Growth ($149/mo); MCP and 5-year historical data unlock at Pro ($499/mo).

Quick start

Pick your integration path. Both work with the same ck_live_* API key from pro.bitcompare.net.

REST · curlPlain HTTP, no SDK required
curl -s https://api.bitcompare.net/api/v1/rates \
  -H "Authorization: Bearer ck_live_..." \
  -G \
  -d "symbol=btc" \
  -d "category=lending" \
  -d "limit=1"

# Response (truncated):
# [
#   {
#     "provider": "nexo",
#     "symbol": "btc",
#     "category": "lending",
#     "apy": 0.08,
#     "updatedAt": "2026-05-21T01:00:00Z"
#   }
# ]
MCP · Claude Desktopstdio transport via npx
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "bitcompare": {
      "command": "npx",
      "args": ["-y", "@bitcompare/mcp-server"],
      "env": {
        "BITCOMPARE_API_KEY": "ck_live_..."
      }
    }
  }
}

// Then in Claude:
// > "What's the best yield on BTC right now?"
// Claude invokes the get_rates tool and answers from live data.

Everything in one place

Documentation, specs, MCP descriptors, and the dashboard — all linked from a single page.