Referral Program
Get Referral Code Info
Partner Support
User Flows
General API
- Builder Info
- System Info
- USDC Faucet
User API
- Registration
- Key Management
- Account/User Info
- Account Notifications
- Account Config
- Delegate Signer
Trading API
- Order Management
- Liquidations
- Assets/Withdraw/Settle PnL
- Positions
- Funding
Rewards API
- Trading Rewards
- Market Making Rewards
Staking & Valor API
- Staking
- Valor
Builder API
- User Data
- Trading Campaigns
- Fee Setting
- Referral Program
- GETCheck Referral Code
- POSTCreate Referral Code
- GETVerify Referral Code
- GETGet Referral Code Info
- POSTUpdate Referral Code
- POSTBind Referral Code
- GETGet Referral Info
- GETGet Referee Info
- GETGet Referee Rebate Summary
- GETGet Referee History
- GETGet Referral History
- GETGet Referral Rebate Summary
- GETGet Distribution History
- POSTEdit Referral Code Split
- GET
Market Data API
- TradingView
- Funding Rates
- Market Info
Websocket API
- Introduction
- PING/PONG
- Authentication
- Error Response
- Public Market Data
- Private User Data
Referral Program
Get Referral Code Info
Limit: 10 requests per second
GET /v1/referral/admin_info
Scope: Only each builder’s admin wallet can call this endpoint.
GET
/
v1
/
referral
/
admin_info
curl --request GET \
--url https://api-evm.orderly.org/v1/referral/admin_info \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"account_id": "0x114f583aea808c5812e16109b6c087660285a26f0a31dcc0f9b54f1a6a0fefbd",
"user_address": "0xa8ec6970fec8842dd229eef170f624c3d77dab45",
"number_of_codes": "1",
"total_invites": 0.03,
"total_traded": 0.01,
"referee_volume": 0.01,
"referee_fee": 0.01,
"orderly_fee": 1111,
"referral_codes": [
{
"code": "C4",
"max_rebate_rate": 0.4,
"referrer_rebate_rate": 0.3,
"referee_rebate_rate": 0.1,
"total_referrer_rebate": 123.456,
"total_referee_rebate": 123.456
}
]
}
],
"meta": {
"records_per_page": 25,
"current_page": 1,
"total": 50
}
}
}
Headers
Query Parameters
Only one of user_address
and account_id
can be provided
Only one of user_address
and account_id
can be provided
Response
200 - application/json
OK
curl --request GET \
--url https://api-evm.orderly.org/v1/referral/admin_info \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"account_id": "0x114f583aea808c5812e16109b6c087660285a26f0a31dcc0f9b54f1a6a0fefbd",
"user_address": "0xa8ec6970fec8842dd229eef170f624c3d77dab45",
"number_of_codes": "1",
"total_invites": 0.03,
"total_traded": 0.01,
"referee_volume": 0.01,
"referee_fee": 0.01,
"orderly_fee": 1111,
"referral_codes": [
{
"code": "C4",
"max_rebate_rate": 0.4,
"referrer_rebate_rate": 0.3,
"referee_rebate_rate": 0.1,
"total_referrer_rebate": 123.456,
"total_referee_rebate": 123.456
}
]
}
],
"meta": {
"records_per_page": 25,
"current_page": 1,
"total": 50
}
}
}