
YourPropFirm ships with 49 native and partner integrations across trading platforms, payments, KYC, analytics, and ops. Turn on what you need. Everything else routes through one webhook and one API.
We hold direct commercial relationships with each vendor. That means better pricing, faster support, and feature access when a new manager API drops, usually within a week.







Full MT5 Manager API. Accounts, groups, risk, margin, deposits, live trade stream.

MT4 Manager API with trade mirroring and group provisioning.

Open API and FIX. Partner accounts, Copy trading, instant challenge provisioning.

DXtrade CFD. Challenge templates, risk rules, broker settlement.

DXtrade XT for multi-asset desks. Same challenge and risk wiring as CFD.
Native integrations are a single switch in the admin panel. No commercial call, no procurement ticket.
For partner tools, solutions engineering runs the setup. You don't touch vendor dashboards unless you want to.
Average time from 'we want this' to 'it's live in production' across our 85 customer deployments.
Every object in YourPropFirm has a documented REST endpoint, a typed webhook, and a real SDK. Most firms ship their first custom integration in an afternoon.
// Subscribe to challenge events
const hook = await ypf.webhooks.create({
url: "https://your.app/events",
events: [
"account.challenge_passed",
"payout.requested",
"kyc.approved",
],
});
// Every event is signed + retried
app.post("/events", verify(ypf), (req, res) => {
const { type, data } = req.body;
if (type === "account.challenge_passed") {
notifySlack(data.account_id);
}
res.sendStatus(200);
});30-minute demo. We'll turn on the exact integrations you'd use, MT5 + Sumsub + Confirmo by default, and show you the wiring end to end.