Skip to main content

GET /api/v1/users/me/referral/children

Returns the list of users referred by the currently authenticated user, including their activity summary.

Authentication​

Required. Bearer token must be included in the Authorization header.

Request​

No request body or query parameters required.

Example​

curl -X GET https://intotes.com/api/v1/users/me/referral/children \
-H "Authorization: Bearer <token>"

Response​

200 OK​

[
{
"id": 101,
"username": "trader_jane",
"image": "https://cdn.intotes.com/avatars/101.jpg",
"level": 1,
"joined_date": "2025-09-01T12:00:00Z",
"total_bets": 48,
"total_volume": 1250000
},
{
"id": 205,
"username": "crypto_mike",
"image": "https://cdn.intotes.com/avatars/205.jpg",
"level": 1,
"joined_date": "2025-09-15T08:30:00Z",
"total_bets": 22,
"total_volume": 540000
},
{
"id": 310,
"username": "betking99",
"image": null,
"level": 2,
"joined_date": "2025-10-02T16:45:00Z",
"total_bets": 11,
"total_volume": 210000
}
]

Response Fields​

FieldTypeDescription
idint64Referred user's ID
usernamestringReferred user's display name or nickname
imagestringAvatar URL of the referred user (or null)
levelintReferral level (1 = direct, 2 = second-degree, 3 = third-degree)
joined_datestringISO 8601 timestamp of when the referred user joined
total_betsintTotal number of bets placed by the referred user
total_volumeint64Total trading volume of the referred user in kopecks

Errors​

StatusCodeDescription
401unauthorizedMissing or invalid authentication token