Referral Program
Intotes rewards users who bring new traders to the platform through a three-level referral program. When someone you referred trades on a prediction market, you earn a percentage of the platform's trading fee from that trade.
How It Works​
- Get your referral code. Every user receives a unique referral code at registration. You can find it in your profile.
- Share the code. Send your code to friends or publish it online.
- Friends sign up. When a new user registers with your referral code (via the
referral_codefield during sign-up), they are permanently linked to your referral network. - Earn from their trades. Each time a referred user places a trade, you earn a share of the trading fee the platform collects.
Fee-Sharing Structure​
The referral program spans three levels, meaning you earn not only from users you directly referred, but also from users they refer, and one level further.
| Level | Relationship | Fee Share |
|---|---|---|
| Level 1 | Users you directly referred | 15% of trading fees |
| Level 2 | Users referred by your Level 1 referrals | 4% of trading fees |
| Level 3 | Users referred by your Level 2 referrals | 1% of trading fees |
Example: The platform charges a trading fee on a market order. If your direct referral (Level 1) places that trade, you receive 15% of the fee. If their referral (your Level 2) trades, you receive 4% of that fee. And so on for Level 3.
Referral Earnings API​
Referral Info​
GET /api/v1/users/me/referral/info
Returns your referral code, total lifetime earnings, and a breakdown of earnings and referral counts by level.
Example response:
{
"referral_code": "ABCD1234",
"total_earnings": 125.50,
"levels": [
{ "level": 1, "referrals_count": 12, "earnings": 100.00 },
{ "level": 2, "referrals_count": 5, "earnings": 20.00 },
{ "level": 3, "referrals_count": 3, "earnings": 5.50 }
]
}
Referral List​
GET /api/v1/users/me/referral/children
Returns the list of users in your referral network, including their level, registration date, and the earnings they have generated for you.
Summary of Endpoints​
| Method | Endpoint | Auth | Description |
|---|---|---|---|
GET | /api/v1/users/me/referral/info | Required | Referral code, earnings, and stats |
GET | /api/v1/users/me/referral/children | Required | List of referred users |