GET
/
v1
/
funding_fee
/
history
curl --request GET \
  --url https://api-evm.orderly.org/v1/funding_fee/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": {
    "meta": {
      "total": 9,
      "records_per_page": 25,
      "current_page": 1
    },
    "rows": [
      {
        "symbol": "PERP_ETH_USDC",
        "funding_rate": 0.00046875,
        "mark_price": 2100,
        "funding_fee": 0.000016,
        "payment_type": "Pay",
        "status": "Accrued",
        "created_time": 1682235722003,
        "updated_time": 1682235722003
      }
    ]
  }
}

Headers

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

Query Parameters

symbol
string

omit to get funding fee history for all symbols

start_t
string

start time range that you wish to query, noted that the time stamp is a 13-digits timestamp.

end_t
string

end time range that you wish to query, noted that the time stamp is a 13-digits timestamp.

page
string

the page you wish to query.

size
string

Default: 60

Response

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