Getting Started
Public Data
Trading
- POSTPlace order
- DELCancel order
- DELCancel multiple orders
- GETGet order
- GETGet orders
- PUTEdit order
- POSTPlace algo order
- DELCancel algo order
- DELCancel multiple algo orders
- DELCancel all orders by symbol
- GETGet algo order
- GETGet algo orders
- PUTEdit algo order
- GETGet transaction by trade id (last 3 months)
- GETGet transaction history (in the past 2 years)
- GETGet trading fee
- POSTCancel all after
Account
Assets
Futures
Spot Margin
Websocket Streams
- Introduction
- Public Market Data
- Private User Data
- Commands
Futures
Get funding fee history
get funding fee history
GET
/
v3
/
futures
/
fundingFee
/
history
Copy
curl --request GET \
--url https://api.woox.io/v3/futures/fundingFee/history \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>' \
--data 'symbol=<string>' \
--data startTime=123 \
--data endTime=123 \
--data page=123 \
--data size=123
Copy
{
"success": true,
"data": {
"meta": {
"total": 670,
"recordsPerPage": 25,
"currentPage": 1
},
"rows": [
{
"id": 1286360,
"symbol": "PERP_BTC_USDT",
"fundingRate": -0.00001445,
"markPrice": "26930.60000000",
"fundingFee": "9.56021744",
"fundingIntervalHours": 8,
"paymentType": "Pay",
"status": "COMPLETED",
"createdTime": 1696060873259,
"updatedTime": 1696060873286
},
{
"id": 1286115,
"symbol": "PERP_BTC_USDT",
"fundingRate": 0.00006526,
"markPrice": "26911.00000000",
"fundingFee": "43.14503239",
"fundingIntervalHours": 8,
"paymentType": "Receive",
"status": "COMPLETED",
"createdTime": 1696032073609,
"updatedTime": 1696032073643
},
...
]
},
"timestamp": 1721351502594
}
Limit: 20 requests per 60 seconds per user
Get funding fee history
Copy
{
"success": true,
"data": {
"meta": {
"total": 670,
"recordsPerPage": 25,
"currentPage": 1
},
"rows": [
{
"id": 1286360,
"symbol": "PERP_BTC_USDT",
"fundingRate": -0.00001445,
"markPrice": "26930.60000000",
"fundingFee": "9.56021744",
"fundingIntervalHours": 8,
"paymentType": "Pay",
"status": "COMPLETED",
"createdTime": 1696060873259,
"updatedTime": 1696060873286
},
{
"id": 1286115,
"symbol": "PERP_BTC_USDT",
"fundingRate": 0.00006526,
"markPrice": "26911.00000000",
"fundingFee": "43.14503239",
"fundingIntervalHours": 8,
"paymentType": "Receive",
"status": "COMPLETED",
"createdTime": 1696032073609,
"updatedTime": 1696032073643
},
...
]
},
"timestamp": 1721351502594
}
Headers
api-key
Example:
"abcdef123456"
api-signature
Example:
"signaturestring"
api-timestamp
Example:
"1718943200000"
Body
application/x-www-form-urlencoded
The body is of type object
.
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.woox.io/v3/futures/fundingFee/history \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>' \
--data 'symbol=<string>' \
--data startTime=123 \
--data endTime=123 \
--data page=123 \
--data size=123
Copy
{
"success": true,
"data": {
"meta": {
"total": 670,
"recordsPerPage": 25,
"currentPage": 1
},
"rows": [
{
"id": 1286360,
"symbol": "PERP_BTC_USDT",
"fundingRate": -0.00001445,
"markPrice": "26930.60000000",
"fundingFee": "9.56021744",
"fundingIntervalHours": 8,
"paymentType": "Pay",
"status": "COMPLETED",
"createdTime": 1696060873259,
"updatedTime": 1696060873286
},
{
"id": 1286115,
"symbol": "PERP_BTC_USDT",
"fundingRate": 0.00006526,
"markPrice": "26911.00000000",
"fundingFee": "43.14503239",
"fundingIntervalHours": 8,
"paymentType": "Receive",
"status": "COMPLETED",
"createdTime": 1696032073609,
"updatedTime": 1696032073643
},
...
]
},
"timestamp": 1721351502594
}
Assistant
Responses are generated using AI and may contain mistakes.