Crypto Prices
Live cryptocurrency rates in INR & USD with 24h change.
Endpoint
GET/crypto?coin=bitcoin,ethereum,solana
Live rates for comma-separated coins.
Query Parameters
| Parameter | Type | Default | Required | Description |
|---|---|---|---|---|
coin | string | bitcoin,ethereum | ❌ | Comma-separated CoinGecko IDs |
Popular Coin IDs
bitcoin · ethereum · solana · ripple · dogecoin · cardano · polkadot · litecoin · avalanche-2 · chainlink
Example
curl "https://apiw.proxynex.pro/crypto?coin=bitcoin,ethereum,solana"
{
"status": "ok",
"api": "crypto",
"count": 3,
"data": {
"bitcoin": { "inr": 6021800, "usd": 64250, "inr_24h_change": 0.22 },
"ethereum": { "inr": 178147, "usd": 1900, "inr_24h_change": 0.09 },
"solana": { "inr": 6984, "usd": 74.5, "inr_24h_change": 0.53 }
}
}