IB Partner API
The IB Partner API lets Partner accounts verify whether a given user belongs to their IB (Introducing Broker) network. It is a lightweight, read-only REST API — a single endpoint, a single query parameter, and a simple JSON response.
What you can do
- Check whether a user is under your IB in real time
- Retrieve the date the user joined under your IB
- Integrate the check into your own dashboards or onboarding flows
Base URL
https://partner-props.motforex.com/api
Quick start
- Obtain an API key from your IB account manager.
- Add the key to every request as an
Authorizationheader. - Call
GET /ib/user-status?user_id=<id>and readis_under_ib.
GET /api/ib/user-status?user_id=a1b2c3d4-0000-0000-0000-000000000000
Authorization: Bearer YOUR_API_KEY
{
"is_under_ib": true,
"date_joined": "2026-06-24T08:30:00.000Z"
}
Conventions
| Convention | Details |
|---|---|
| Transport | HTTPS only |
| Format | JSON request and response bodies |
| Auth | Bearer token in Authorization header |
| Timestamps | ISO 8601 UTC (2026-06-24T08:30:00.000Z) |
| IDs | UUID v4 strings |