Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.wooxpro.com/llms.txt

Use this file to discover all available pages before exploring further.

Get Futures Rebate List(KEYED)

Used for API affiliates to query contract rebate records within a certain time range

Request URL

GET https://cloud-api.wooxpro.com/contract/private/affiliate/rebate-list

Request Limit

See Detailed Rate Limit

Request Parameter

Request
curl https://cloud-api.wooxpro.com/contract/private/affiliate/rebate-list?page=1&size=10&currency=USDT
| Field | Type | Required | Description | |:-----------|:-----|:---------|:---------------------------|:-----------------| | user_id | Long | No | user ID | | page | Int | Yes | Page number | | size | Int | Yes | Number of records per page | | currency | String | Yes | query currency | | rebate_start_time | Long | No | Query rebate start timestamp(in second) | | rebate_end_time | Long | No | Query rebate end timestamp(in second) | | register_start_time | Long | No | Query register start timestamp(in second) | | register_end_time | Long | No | Query register end timestamp(in second) |

Response Data

Response
{
  "total": 2,
  "btc_rebate_sum": 0,
  "size": 10,
  "usdt_rebate_sum": 448.9697507148,
  "page": 1,
  "eth_rebate_sum": 0,
  "rebate_detail_page_data": [{
    "rebate_coin": "USDT",
    "trade_user_id": 4225149,
    "total_rebate_amount": 427.1825970576,
    "user_type":1
  }, {
    "rebate_coin": "USDT",
    "trade_user_id": 4225148,
    "total_rebate_amount": 21.7871536572,
    "user_type":1
  }]
}
FieldTypeDescription
btc_rebate_sumDecimalTotal BTC rebates
usdt_rebate_sumDecimalTotal USDT rebates
eth_rebate_sumDecimalTotal ETH rebates
rebate_detail_page_dataObjectRebate details
rebate_coinStringCurrency
trade_user_idLongTrading user ID
total_rebate_amountDecimalTotal commission for the user
user_typeIntUser type
-0=Indirect
-1=Direct