Overview
Indodax is Indonesia's largest cryptocurrency exchange API, allowing you to trade Bitcoin and dozens of altcoins against the Indonesian Rupiah (IDR). The public API provides real-time ticker prices, order books, and trade history for all IDR-denominated pairs without authentication. Private endpoints for placing orders and checking balances require an API key and HMAC signature.
Beginner Tip
If you are new to Indodax, begin with the public ticker endpoint at https://indodax.com/api/ticker_all — it returns prices for all pairs in a single unauthenticated request, so you can explore the data structure risk-free.
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://indodax.com/api/ticker/btc_idr
- Result
- HTTP 200 · application/json · 184 bytes · compressed
- Response time
- 49 ms (median of 3) · fastest 39 ms
- Transport
- TLSv1.2 · ECDHE-ECDSA-AES128-GCM-SHA256 · certificate issued by Google Trust Services
- 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 |
|---|---|---|
| ticker | object | {8 fields} |
Captured Response
Captured from a real request to https://indodax.com/api/ticker/btc_idr on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"ticker": {
"buy": "1130726000",
"high": "1157609000",
"last": "1131168000",
"low": "1126940000",
"sell": "1131168000",
"server_time": 1786391378,
"vol_btc": "15.39569177",
"vol_idr": "17618002524"
}
} Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://indodax.com/api/ticker/btc_idr";
// 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.
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.