Skip to main content

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

ParameterTypeDefaultRequiredDescription
coinstringbitcoin,ethereumComma-separated coin IDs

bitcoin · ethereum · solana · ripple · dogecoin · cardano · polkadot · litecoin · avalanche-2 · chainlink

Example

curl "https://api.apimitra.in/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 }
}
}