Headway Broker API integration services (MT4 / MT5 / OpenFinance)

Protocol analysis, trade-history export and copy-trading data pipelines for the Headway trading app — FSCA-aware, authorized, and source-code-deliverable.

From $300 · Pay-per-call available
OpenData · OpenFinance · Forex protocol analysis · MT4/MT5 export

Pipe Headway Broker accounts, positions, and statements into your stack — without re-implementing the trader UI

Headway is a South-Africa-headquartered, FSCA-regulated CFD and forex broker (operated by JAROCEL (PTY) LTD, license 52108) that routes 470+ instruments through MT4, MT5, and a proprietary mobile app. We package that trading surface into clean APIs: account login, real-time positions, closed-trade statements, deposit and withdrawal history, copy-trading strategy data, and webhook events — under documented, authorized integration patterns.

Trade history export — Pull historical fills, swap, commission and net P&L per ticket from MT4/MT5 server, normalized to JSON, CSV, or Excel for downstream reconciliation.
Account & balance sync — Equity, margin, free margin, leverage and base-currency balance for Cent, Standard and Pro accounts; useful for portfolio dashboards and margin-call alerting.
Copy-trading data feed — Subscribe to Headway Copytrade strategy metadata: leader equity curves, instruments traded, drawdown, copy ratio, and per-follower allocation.
Webhook + streaming events — Order open / close, margin events, and deposit confirmations pushed to your endpoint for low-latency risk and reporting workflows.

Why Headway Broker data is worth integrating

A live forex account is a structured data store

Every Headway live account holds time-series data that finance, tax and reporting teams routinely need: open positions, closed trades with timestamps to the millisecond, swap and commission charges, deposits, withdrawals, and KYC profile fields. Pulling that into a warehouse stops traders from manually exporting MT4 statements every month.

Multi-platform, single trader

The same Headway account shows up in MT4, MT5, the proprietary mobile app, and the Copytrade interface. Users see four windows; integrators see one consistent ledger. Our integration consolidates those surfaces so downstream consumers receive a unified event stream rather than four partial ones.

Copy-trading creates a second data layer

Headway Copytrade — launched as a flexible, transparent service — exposes leader strategy histories, instruments, and drawdown. That is high-value data for performance dashboards, fund reporting, and tax allocation across followers. Most retail traders cannot extract it without an API layer.

What we deliver

Source-code drop

  • OpenAPI / Swagger spec covering login, accounts, history, positions, deposits, copy trading
  • Reference implementation in Python (FastAPI) and Node.js (Fastify); Go SDK available on request
  • Auth flow report: OAuth-style token exchange, MT4/MT5 manager API binding, 2FA handling
  • Polling and webhook examples plus retry/back-off logic
  • Postman collection, integration tests, and a sandbox harness against a Headway demo account

Pay-per-call hosted API

  • Hosted endpoints behind your tenant key — no upfront fee
  • Rate-limited, audited access with per-call billing
  • Built-in caching for symbol metadata to cut latency on chart-heavy use cases
  • Consent and audit log retention for compliance reviews

Documentation set

  • Field-level dictionary for every endpoint (currency, leverage, swap-type, lot-size unit)
  • Sequence diagrams for the most-used flows
  • Sample responses captured against Cent, Standard, and Pro account types
  • Runbook for handling FSCA, POPIA, and FICA data requests

Data available for integration

The table below maps the data we can surface from a connected Headway account back to the screen or feature it originates from, the granularity available, and a typical downstream use. It is the starting point for most scoping conversations.

Data typeSource (Headway feature/screen)GranularityTypical use
Account profile & KYC statusSign-up & client areaPer account, snapshotOnboarding sync, AML/KYC reuse, segmentation
Account balance, equity, marginTrader dashboard / mobile homePer account, near-real-timeRisk dashboards, margin-call alerts, treasury
Open positionsMT4 / MT5 / proprietary app trade tabPer ticket, streaming on changeExposure analytics, hedging, P&L attribution
Closed-trade historyStatement / history viewPer ticket, ms timestampsTax reporting, performance analysis, audit
Deposits & withdrawalsCashier / payment screenPer transactionAccounting reconciliation, fraud monitoring
Symbol & instrument metadataMarket watch / 470+ instrumentsPer symbol, daily refreshPricing engines, product catalog sync
Copytrade strategies & followersHeadway CopytradePer strategy + per followerPerformance dashboards, fund-style reporting
Economic calendar entriesNews & analytics tabPer eventVolatility tagging on trades, content sites

Typical integration scenarios

1. Tax & statement export for active retail traders

Context: a Headway client trades 500+ tickets per quarter and needs a clean ledger for their accountant. We hook the closed-trade history endpoint, normalize swap/commission into separate columns, and emit a quarterly Excel and PDF that mirrors what tax authorities (e.g. SARS in South Africa or HMRC abroad) accept. Underlying calls map to the MT4/MT5 history range plus the deposits/withdrawals query.

2. Multi-broker portfolio dashboard

Context: a wealth-tech app aggregates positions across Headway, Exness, FOREX.com, and IG. We expose a normalized positions endpoint with consistent fields (instrument, side, volume, avg_price, unrealized_pnl) so the dashboard does not branch per broker. OpenFinance-style consent tokens scope the connection to read-only access.

3. Copy-trading performance analytics

Context: a content site ranks Headway Copytrade leaders. We periodically pull each public strategy's equity curve, drawdown, traded instruments, and follower count, store snapshots, and compute risk-adjusted metrics (Sharpe, Sortino, max DD). The output feeds league tables and email digests.

4. Margin and risk webhooks for prop teams

Context: a prop firm seats 30 traders on individual Headway accounts. Each account emits webhooks for new open positions and margin-level changes, which a central risk engine consumes to enforce per-trader exposure rules and trigger automated reduce-only actions when limits breach.

5. Deposit reconciliation for B2B affiliates

Context: an introducing broker tracks rebates per referred client. A nightly job calls the deposits endpoint, joins on referral codes, computes commissions, and posts journal entries into the affiliate's accounting system — replacing a manual CSV export from the partner portal.

Technical implementation

Three short examples below show the shape of the wrappers we deliver. The full source ships with retry logic, timeouts, structured error codes, idempotency keys for write paths, and a fixture-replay test suite recorded against a Cent demo account.

Login & token exchange

POST /api/v1/headway/auth/login
Content-Type: application/json

{
  "login": "10293847",
  "password": "<encrypted>",
  "server": "Headway-Live",
  "totp": "612430"
}

200 OK
{
  "access_token": "eyJhbGci...",
  "refresh_token": "...",
  "expires_in": 3600,
  "account_type": "Pro",
  "leverage": "1:unlimited"
}

Closed-trade history (statement export)

GET /api/v1/headway/history?from=2026-01-01&to=2026-03-31&format=json
Authorization: Bearer <ACCESS_TOKEN>

200 OK
{
  "account": "10293847",
  "currency": "USD",
  "items": [
    {
      "ticket": 87213441,
      "symbol": "XAUUSD",
      "side": "buy",
      "volume": 0.50,
      "open_time": "2026-02-12T08:14:23.112Z",
      "close_time": "2026-02-12T15:42:09.882Z",
      "open_price": 2034.10,
      "close_price": 2049.85,
      "swap": -1.42,
      "commission": -3.50,
      "profit": 782.58
    }
  ],
  "next_page": null
}

Webhook: position event

POST https://your-app/webhooks/headway
X-Headway-Event: position.opened
X-Headway-Signature: t=1714291200,v1=...

{
  "account": "10293847",
  "ticket": 87213999,
  "symbol": "EURUSD",
  "side": "sell",
  "volume": 1.20,
  "open_price": 1.0712,
  "stop_loss": 1.0760,
  "take_profit": 1.0640,
  "leverage": 500,
  "ts": "2026-04-28T09:01:11Z"
}

// Verify HMAC, then route to risk engine.
// Reply 2xx within 5s or we re-deliver with exponential backoff.

Compliance & privacy

Headway is operated by JAROCEL (PTY) LTD under FSCA license 52108 in South Africa. Any data integration that we build follows three layers of regulation: (1) FSCA conduct rules for the broker side; (2) POPIA (Protection of Personal Information Act, South Africa) for personal data minimization, lawful processing, and cross-border transfer notices; and (3) FICA (Financial Intelligence Centre Act) for AML/KYC retention. For EU-resident traders, GDPR equivalence and lawful basis (typically explicit consent or contract) apply. We log access, store consent records per account, and ship a runbook your DPO can use to respond to subject-access and erasure requests.

Data flow / architecture

  • Client app / MT4/MT5 terminal — origin of authenticated sessions and ticket events
  • Ingestion API gateway — token validation, rate limits, audit logging
  • Normalization layer — maps raw broker payloads to a canonical schema (positions, deals, transfers)
  • Storage — Postgres for ledger data, object storage for monthly statement PDFs, Redis for tick caches
  • Consumer surfaces — REST/GraphQL for dashboards, webhooks for risk engines, batch CSV/Excel for accounting

Market positioning & user profile

Headway, founded in 2022 and based in East London, South Africa, primarily targets active retail traders in emerging markets — Africa, the Middle East, South-East Asia, and parts of Latin America — who want low entry barriers (Cent accounts from $1) plus access to MT4/MT5 muscle. Its 470+ instruments tilt toward forex, gold, oil, and US equity CFDs, and the recent Copytrade launch broadens the audience to passive investors who follow leader strategies rather than self-direct. Mobile usage is dominant: the proprietary Android app and iOS Trading App are the main entry points, with desktop MT4/MT5 reserved for power users and EA developers.

Modules we typically ship together

  • Authentication & 2FA-aware session management
  • Account, balance, and leverage sync
  • Open and closed trade history with paging and date filters
  • Deposits, withdrawals, and internal transfers
  • Symbol catalog & tick/aggregated price snapshots
  • Copytrade strategy and follower data
  • Webhook fanout for position and margin events
  • Statement export to Excel, CSV, JSON, and PDF

Screenshots

Click any thumbnail to view the full-resolution screen captured from the Headway Broker app.

Headway Broker screenshot 1 Headway Broker screenshot 2 Headway Broker screenshot 3 Headway Broker screenshot 4 Headway Broker screenshot 5 Headway Broker screenshot 6

Similar apps & integration landscape

Headway sits inside a broader ecosystem of mobile-first forex and CFD apps. Many traders run accounts at two or three of them in parallel, which is exactly where unified data integration earns its keep — one normalized history feed beats six tabs of MT4 statement exports. Below is a non-ranked overview of apps we frequently see alongside Headway.

Exness

Operates the Exness Terminal and Trade App plus MT4/MT5 access. Holds balance, position, and order data very similar in shape to Headway, so the same canonical schema typically covers both with minor field-mapping work.

FOREX.com

A US/UK-anchored brand with a proprietary mobile app. Account holders generate detailed ticket history that integrators export for tax, fund reporting, and multi-broker P&L roll-ups.

IG Trading

Long-standing UK broker offering an extensive REST and streaming API. Users who hold both IG and Headway accounts often need a unified positions feed across CFD product lines.

Saxo Trader

Saxo's OpenAPI is one of the most documented in the industry. Aggregator dashboards that already speak Saxo OpenAPI can extend coverage to Headway via the same canonical-schema pattern we ship.

CMC Markets (NextGeneration)

NextGeneration's chart and sentiment layer pairs well with Headway's trade history when traders want a single performance dashboard across both venues.

Capital.com

Cyprus-based broker with 9,000+ instruments and a public REST/WebSocket API. Useful reference design when building broker-agnostic integrations that include Headway.

Fusion Markets (cTrader)

cTrader-first broker. The cTrader Open API differs from MT4/MT5 manager APIs, but the canonical position/history schema bridges Headway and Fusion in a single downstream model.

eToro

Best known for social and copy trading. Compares directly with Headway Copytrade — clients running both often need consolidated leader/follower analytics.

XM

Multi-region MT4/MT5 broker with a wide instrument catalog. Customer profiles overlap heavily with Headway's Cent and Standard accounts, making unified statement exports a recurring ask.

FBS

Mobile-first with cent and demo account types similar to Headway. Integration scope (login, history, deposits) maps almost one-to-one onto the contract we deliver for Headway.

About us

We are an independent technical studio focused on App interface integration, OpenData / OpenFinance / OpenBanking pipelines, and authorized API delivery. The team has years of hands-on experience in mobile applications and fintech: protocol analysis, interface refactoring, third-party API integration, automated data scripting, and interface documentation. We have shipped integrations across financial and banking apps, e-commerce and retail, hotel and mobility, and social/OTT — Headway-style trading apps fall squarely in our wheelhouse because the core primitives (login, ledger, statement, webhook) are the same patterns we ship every week.

  • Two engagement models — source-code delivery from $300 (pay after delivery upon satisfaction) or pay-per-call API billing on our hosted endpoints
  • Compliant, lawful interface implementations aligned with local privacy and financial regulation
  • Android + iOS coverage, with runnable API source, OpenAPI docs, and a test plan in every package
  • Custom Python / Node.js / Go SDKs, Postman collections, and CI-ready integration tests
  • End-to-end pipeline: protocol analysis → build → validation → compliance review

Contact

Tell us the target app (Headway Broker, in this case) and your specific data needs — trade history, balance sync, copy-trading feed, webhooks, or a combination — and we will reply with scope, timeline, and a fixed quote.

Open contact page

Engagement workflow

  1. Scope confirmation: which Headway data (history, positions, copytrade, webhooks) and which downstream system
  2. Protocol analysis & API design — typically 2–5 business days
  3. Build and internal validation against a demo Cent account — 3–8 business days
  4. Documentation, sample payloads, and integration tests — 1–2 business days
  5. First delivery in 5–15 business days; broker-side approvals and 2FA enrollment can extend timelines

FAQ

What do you need from me?

The target app (Headway Broker — supplied), specific data needs (e.g. closed-trade history, copytrade feed), and any sandbox or live credentials with consent to use them.

How long does delivery take?

5–12 business days for a first API drop with documentation. Real-time streaming or multi-broker fan-out can run longer.

How do you handle compliance?

Authorized integration only, with FSCA / POPIA / FICA-aware logging, consent capture, and data-minimization. NDAs on request.

Do you support both demo and live Headway accounts?

Yes — the same API surface routes Cent, Standard, Pro, and demo accounts. We recommend building against a demo account first.
📱 Original app overview (appendix)

Headway Broker (package com.headliner) is a trading application designed for clarity, speed, and control across global markets. It provides direct access to indices, stocks, oil, commodities, forex, and crypto CFDs, with order execution available through MT4, MT5, and the proprietary mobile interface. Users can open a live trading account in minutes, fund through several secure payment options, and withdraw funds without long delays.

  • Active-trader tooling — real-time charts, one-click ordering, unified dashboard for open trades and total exposure
  • Over 470 instruments — forex pairs, indices, stocks, commodities, metals, energies, and synthetics
  • Account ladder — Cent ($1 minimum), Standard ($10), and Pro ($100) tiers; unlimited leverage on real accounts
  • Demo account — full-featured, real-time market environment for practising strategies before going live
  • Two-factor authentication — required for sensitive operations, layered on top of encrypted payment-method handling
  • Education & market intelligence — tutorials, daily insights from financial experts, theory library, and an integrated economic calendar
  • Headway Copytrade — copy experienced traders in real time with adjustable copy ratio from a starting capital of $1

Corporate & legal: Operated by JAROCEL (PTY) LTD, registered in South Africa (3 Flamingo Crescent, East London, 5200), regulated by the Financial Sector Conduct Authority (FSCA) under license 52108. Use of the platform is governed by Headway's Terms & Conditions and Privacy Policy (hw.site/privacy_policy). Users are advised to read these documents in full before opening an account.

This page is an independent description of integration possibilities for the Headway trading app. All trademarks belong to their respective owners.