Platforms / API

Automate your trading strategy

Connect your algorithms directly to our matching engine via REST API, FIX protocol, or WebSocket streams.

Quick Start
place-order.js
// zemblancoo REST API — Place Order
const response = await fetch('https://api.zemblancoo.com/v1/orders', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    symbol: 'EURUSD',
    side: 'buy',
    type: 'market',
    volume: 0.1,
  }),
});

const order = await response.json();
console.log(order.id); // ORD-928471

REST API

RESTful API with JSON responses. Full order management, account data, and market quotes.

FIX Protocol

Industry-standard FIX 4.4 connectivity for high-frequency and algorithmic traders.

WebSocket Streams

Real-time streaming of tick data, order book updates, and account events.