Skip to main content

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​

  1. Get your referral code. Every user receives a unique referral code at registration. You can find it in your profile.
  2. Share the code. Send your code to friends or publish it online.
  3. Friends sign up. When a new user registers with your referral code (via the referral_code field during sign-up), they are permanently linked to your referral network.
  4. 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.

LevelRelationshipFee Share
Level 1Users you directly referred15% of trading fees
Level 2Users referred by your Level 1 referrals4% of trading fees
Level 3Users referred by your Level 2 referrals1% 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​

MethodEndpointAuthDescription
GET/api/v1/users/me/referral/infoRequiredReferral code, earnings, and stats
GET/api/v1/users/me/referral/childrenRequiredList of referred users