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
- Sub-account
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
- POSTBuilder admin update auto referral
- GETBuilder admin get auto referral info
- GETGet auto referral progress
- POSTEdit Referral Code
- 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
Builder admin get auto referral info
Limit: 1 requests per second
GET /v1/referral/auto_referral/info
Scope: Only each Builder’s admin wallet can call this endpoint.
GET
/
v1
/
referral
/
auto_referral
/
info
Copy
Ask AI
curl --request GET \
--url https://api.orderly.org/v1/referral/auto_referral/info \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
Copy
Ask AI
{
"success": true,
"timestamp": 1702989203989,
"data": {
"required_trading_volume": 10000,
"max_rebate": 1,
"referrer_rebate": 0.5,
"referee_rebate": 0.5,
"description": "<string>",
"enable": true
}
}
Headers
Response
200 - application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.orderly.org/v1/referral/auto_referral/info \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
Copy
Ask AI
{
"success": true,
"timestamp": 1702989203989,
"data": {
"required_trading_volume": 10000,
"max_rebate": 1,
"referrer_rebate": 0.5,
"referee_rebate": 0.5,
"description": "<string>",
"enable": true
}
}
Assistant
Responses are generated using AI and may contain mistakes.