curl --request GET \
--url https://api.orderly.org/v1/referral/rebate_summary \
--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": [
{
"traded_referral": 11,
"referral_rebate": 2.22,
"volume": 123.456,
"date": "2023-11-14"
}
],
"meta": {
"records_per_page": 25,
"current_page": 1,
"total": 50
}
}
}
Limit: 10 requests per second
GET /v1/referral/rebate_summary
curl --request GET \
--url https://api.orderly.org/v1/referral/rebate_summary \
--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": [
{
"traded_referral": 11,
"referral_rebate": 2.22,
"volume": 123.456,
"date": "2023-11-14"
}
],
"meta": {
"records_per_page": 25,
"current_page": 1,
"total": 50
}
}
}
OK
The response is of type object
.