REST API V3
TEST SITE
https://stg.ox.fun
https://stgapi.ox.fun
LIVE SITE
https://ox.fun
https://api.ox.fun
OX.FUN offers a powerful RESTful API to empower traders.
RESTful Error Codes
429
Rate limit reached
10001
General networking failure
20001
Invalid parameter
30001
Missing parameter
40001
Alert from the server
50001
Unknown server error
20031
The marketCode is closed for trading temporarily
Rate Limits
Each IP is limited to:
100 requests per second
20 POST v3/orders requests per second
2500 requests over 5 minutes
Certain endpoints have extra IP restrictions:
s
denotes a secondRequests limited to
1/s
&2/10s
&4/10s
Only 1 request is permitted per second and only 2 requests are permitted within 10 seconds
Request limit
1/10s
The endpoint will block for 10 seconds after an incorrect 2FA code is provided (if the endpoint requires a 2FA code)
Affected APIs:
Rest API Authentication
Public market data methods do not require authentication, however, private methods require a Signature to be sent in the header of the request. These private REST methods use HMAC SHA256 signatures.
The HMAC SHA256 signature is a keyed HMAC SHA256 operation using a client's API Secret as the key and a message string as the value for the HMAC operation.
The message string is constructed as follows:-
msgString = f'{Timestamp}\n{Nonce}\n{Verb}\n{URL}\n{Path}\n{Body}'
Timestamp
Yes
2020-04-30T15:20:30
YYYY-MM-DDThh:mm:ss
Nonce
Yes
123
User generated
Verb
Yes
GET
Uppercase
Path
Yes
stgapi.ox.fun
Method
Yes
/v3/positions
Available REST methods
Body
No
marketCode=BTC-oUSD-SWAP-LIN
Optional and dependent on the REST method being called
The constructed message string should look like:-
2020-04-30T15:20:30\n 123\n GET\n stgapi.ox.fun\n /v3/positions\n marketCode=BTC-oUSD-SWAP-LIN
Note the newline characters after each component in the message string. If Body is omitted it's treated as an empty string.
Finally, you must use the HMAC SHA256 operation to get the hash value using the API Secret as the key, and the constructed message string as the value for the HMAC operation. Then encode this hash value with BASE-64. This output becomes the signature for the specified authenticated REST API method.
The signature must then be included in the header of the REST API call like so:
header = {'Content-Type': 'application/json', 'AccessKey': API-KEY, 'Timestamp': TIME-STAMP, 'Signature': SIGNATURE, 'Nonce': NONCE}
Last updated