CRIPTO STATS
Get Started

Powerful Crypto Data API

Access real-time market data, DeFi yields, and unified wallet balances programmatically. Build the future of Web3 with our low-latency endpoints.

Available Endpoints

Integrate our robust tracking engine directly into your DApp, exchange, or portfolio tracker. Our API supports over 120 chains instantly.

GET /api/v1/market/prices
GET /api/v1/defi/protocols
POST /api/v1/wallet/balance
GET /api/v1/wallet/{address}/nfts
// Node.js Implementation Example const axios = require('axios'); async function getWalletBalance(address) { try { const response = await axios.post('https://api.criptostats.io/v1/wallet/balance', { wallet_address: address, chains: ['ethereum', 'bsc', 'polygon'] }, { headers: { 'x-api-key': 'YOUR_API_KEY' } }); console.log(response.data); } catch (error) { console.error('API Request Failed'); } } // Output: Returns consolidated balance across chains in USD getWalletBalance('0x123...abc');