Skip to main content

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

  1. Obtain an API key from your IB account manager.
  2. Add the key to every request as an Authorization header.
  3. Call GET /ib/user-status?user_id=<id> and read is_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

ConventionDetails
TransportHTTPS only
FormatJSON request and response bodies
AuthBearer token in Authorization header
TimestampsISO 8601 UTC (2026-06-24T08:30:00.000Z)
IDsUUID v4 strings