Protocol analysis, trade-history export and copy-trading data pipelines for the Headway trading app — FSCA-aware, authorized, and source-code-deliverable.
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.
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.
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.
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.
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 type | Source (Headway feature/screen) | Granularity | Typical use |
|---|---|---|---|
| Account profile & KYC status | Sign-up & client area | Per account, snapshot | Onboarding sync, AML/KYC reuse, segmentation |
| Account balance, equity, margin | Trader dashboard / mobile home | Per account, near-real-time | Risk dashboards, margin-call alerts, treasury |
| Open positions | MT4 / MT5 / proprietary app trade tab | Per ticket, streaming on change | Exposure analytics, hedging, P&L attribution |
| Closed-trade history | Statement / history view | Per ticket, ms timestamps | Tax reporting, performance analysis, audit |
| Deposits & withdrawals | Cashier / payment screen | Per transaction | Accounting reconciliation, fraud monitoring |
| Symbol & instrument metadata | Market watch / 470+ instruments | Per symbol, daily refresh | Pricing engines, product catalog sync |
| Copytrade strategies & followers | Headway Copytrade | Per strategy + per follower | Performance dashboards, fund-style reporting |
| Economic calendar entries | News & analytics tab | Per event | Volatility tagging on trades, content sites |
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.
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.
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.
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.
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.
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.
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"
}
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
}
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.
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.
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.
Click any thumbnail to view the full-resolution screen captured from the Headway Broker app.
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.
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.
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.
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'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.
NextGeneration's chart and sentiment layer pairs well with Headway's trade history when traders want a single performance dashboard across both venues.
Cyprus-based broker with 9,000+ instruments and a public REST/WebSocket API. Useful reference design when building broker-agnostic integrations that include Headway.
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.
Best known for social and copy trading. Compares directly with Headway Copytrade — clients running both often need consolidated leader/follower analytics.
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.
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.
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.
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.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Do you support both demo and live Headway accounts?
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.
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.