Seamlessly integrate kline data, ticker data, market trades, order books, and real-time prices into your applications.
Explore APIAccess cryptocurrency data through our REST API with simple HTTP requests.
Endpoint | Method | Description |
---|---|---|
https://api.apexmynt.com/api/v1/kline_data | GET | Retrieve historical candlestick (kline) data |
https://api.apexmynt.com/api/v1/ticker_data | GET | Retrieve latest ticker information |
https://api.apexmynt.com/api/v1/market_trade | GET | Fetch recent market trade data |
https://api.apexmynt.com/api/v1/order_book | GET | Fetch the current order book |
https://api.apexmynt.com/api/v1/price/?token={crypto_symbol} | GET | Fetch real-time price of a specific coin |
Stay updated with real-time cryptocurrency data using our WebSocket service.
wss://api.apexmynt.com/socket
// Connect to the WebSocket
const socket = new WebSocket('wss://api.apexmynt.com/socket');
// Subscribe to ticker updates for BTC/USDT
socket.onopen = () => {
socket.send(JSON.stringify({ action: 'subscribe', channel: 'ticker', symbol: 'BTCUSDT' }));
};
// Listen for messages
socket.onmessage = (event) => {
const data = JSON.parse(event.data);
console.log('Real-time update:', data);
};