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
Account
Get referral summary
Get referral information from each user you has referred
GET
/
v3
/
account
/
referral
/
summary
Copy
curl --request GET \
--url https://api.woox.io/v3/account/referral/summary \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>'
Copy
{
"success": true,
"data": {
"rows": [
{
"referralId": 12509,
"registerTime": "1643076873.484",
"referralCode": "OJEDSSMU",
"tradeStatus": "Traded",
"earned": [
{
"token": "WOO",
"amount": "144.78597143"
},
{
"token": "USDT",
"amount": "0"
}
],
"extraBonus": [
{
"token": "WOO",
"amount" : "10"
}
],
"previousCommission": [
{
"token": "WOO",
"totalAmount": "10.07981438"
}
]
"email": "staking-005_mas@woo.network",
}
...
],
"meta": {
"total": 46,
"recordsPerPage": 1,
"currentPage": 1
}
},
"timestamp": 1690192103430
}
Limit 10 requests per 60 seconds
Get referral information from each user you has referred.
Copy
{
"success": true,
"data": {
"rows": [
{
"referralId": 12509,
"registerTime": "1643076873.484",
"referralCode": "OJEDSSMU",
"tradeStatus": "Traded",
"earned": [
{
"token": "WOO",
"amount": "144.78597143"
},
{
"token": "USDT",
"amount": "0"
}
],
"extraBonus": [
{
"token": "WOO",
"amount" : "10"
}
],
"previousCommission": [
{
"token": "WOO",
"totalAmount": "10.07981438"
}
]
"email": "staking-005_mas@woo.network",
}
...
],
"meta": {
"total": 46,
"recordsPerPage": 1,
"currentPage": 1
}
},
"timestamp": 1690192103430
}
Headers
Example:
"abcdef123456"
Example:
"signaturestring"
Example:
"1718943200000"
Query Parameters
start time in unix timestamp
end time in unix timestamp
the page you wish to query.
the page size you wish to query, default = 25, 1000 at max.
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.woox.io/v3/account/referral/summary \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>'
Copy
{
"success": true,
"data": {
"rows": [
{
"referralId": 12509,
"registerTime": "1643076873.484",
"referralCode": "OJEDSSMU",
"tradeStatus": "Traded",
"earned": [
{
"token": "WOO",
"amount": "144.78597143"
},
{
"token": "USDT",
"amount": "0"
}
],
"extraBonus": [
{
"token": "WOO",
"amount" : "10"
}
],
"previousCommission": [
{
"token": "WOO",
"totalAmount": "10.07981438"
}
]
"email": "staking-005_mas@woo.network",
}
...
],
"meta": {
"total": 46,
"recordsPerPage": 1,
"currentPage": 1
}
},
"timestamp": 1690192103430
}
Assistant
Responses are generated using AI and may contain mistakes.