Welcome to APEXMYNT API Service

Seamlessly integrate kline data, ticker data, market trades, order books, and real-time prices into your applications.

Explore API

REST API

Access 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

WebSocket

Stay updated with real-time cryptocurrency data using our WebSocket service.

WebSocket Endpoint

wss://api.apexmynt.com/socket

Example Usage

// 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);
};