Overview
CoinDCX is an Indian cryptocurrency exchange offering REST APIs for market data, trading, and account management. Public endpoints expose order books, recent trades, and ticker data for all listed pairs without authentication. Authenticated endpoints enable order placement, balance queries, and trade history retrieval for CoinDCX accounts.
Beginner Tip
Start with the public ticker endpoint which needs no key: curl https://api.coindcx.com/exchange/ticker — it returns an array of all market pairs including current price and volume.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://api.coindcx.com/exchange/ticker
- Result
- HTTP 200 · application/json · 202,803 bytes · compressed
- Response time
- 65 ms (median of 3) · fastest 57 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by Let's Encrypt
- Browser CORS
- No Access-Control-Allow-Origin header — call it from a server, not the browser
- Served by
- cloudflare
- Recorded
- 2026-08-10
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| market | string | 0GUSDT |
| change_24_hour | string | 2.649 |
| high | string | 0.15800000 |
| low | string | 0.14700000 |
| volume | string | 821510.21203000 |
| last_price | string | 0.15500000 |
| bid | string | 0.15500000 |
| ask | string | 0.15600000 |
| timestamp | integer | 1786391372 |
Captured Response
Captured from a real request to https://api.coindcx.com/exchange/ticker on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
[
{
"market": "0GUSDT",
"change_24_hour": "2.649",
"high": "0.15800000",
"low": "0.14700000",
"volume": "821510.21203000",
"last_price": "0.15500000",
"bid": "0.15500000",
"ask": "0.15600000",
"timestamp": 1786391372
}
] Field Reference
market Trading pair identifier (e.g., BTCUSDT). last_price Most recent trade price for the pair. bid Highest buy order price currently in the order book. ask Lowest sell order price currently in the order book. volume 24-hour trading volume in the base currency. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://api.coindcx.com/exchange/ticker";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
{
"status": "error",
"message": "not_found",
"code": 404
} Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Binance
⭐ Beginner's PickBinance Spot API provides real-time and historical market data for thousands of cryptocurrency trading pairs on the world's largest crypto exchange by volume.
BitcoinAverage
BitcoinAverage aggregates price data from dozens of global cryptocurrency exchanges to produce weighted average prices for Bitcoin and other digital assets.
Bitfinex
Bitfinex is a professional cryptocurrency exchange offering one of the most comprehensive trading APIs for both spot and margin markets.
Bitmex
BitMEX is a derivatives exchange specializing in perpetual swaps and futures contracts for Bitcoin and other cryptocurrencies.
1inch
⭐ Beginner's Pick1inch is a decentralized exchange (DEX) aggregator that finds the best swap routes across protocols like Uniswap, SushiSwap, and Curve.