GET
/
v1
/
referral
/
referee_history
curl --request GET \
  --url https://api-evm.orderly.network/v1/referral/referee_history \
  --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": [
      {
        "volume": 1229.12,
        "referee_rebate": 2.22,
        "date": "2023-11-14T00:00:00.000Z"
      }
    ],
    "meta": {
      "records_per_page": 25,
      "current_page": 1,
      "total": 50
    }
  }
}

Headers

orderly-timestamp
string
required
orderly-account-id
string
required
orderly-key
string
required
orderly-signature
string
required

Query Parameters

start_date
string

start date range that you wish to query, in the format ‘YYYY-MM-DD’

end_date
string

end date range that you wish to query, in the format ‘YYYY-MM-DD’

page
integer

the page you wish to query

size
integer

the page size you wish to query (max: 500)

Response

200 - application/json
success
boolean
required
timestamp
integer
data
object
required