-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapi.html
21 lines (21 loc) · 903 Bytes
/
api.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>API Documentation</title>
</head>
<body>
<h1>API Endpoint</h1>
<p>You can connect to Bitox.io's API through this endpoint:</p>
<ul>
<li>https://backend.bitox.io/</li>
</ul>
<h1>Public API Methods</h1>
<p>There is one public method, which take HTTP GET requests and return output in JSON format:</p>
<ul>
<li><a href="https://backend.bitox.io/returnTicker">returnTicker</a></li>
<p>This is standard returnTicker information including volume and price data. Returns the ticker for all markets. Sample output:</p>
<p>{"ETH_0x8198e34": {"tokenAddr": "0x8198e349afd0a09efb06b460452ec1beab7a20aa", "quoteVolume": "500.0728741", "baseVolume": "0.2863036437", "last": "0.000050000000010000", "bid": "0.000050000", "ask": "0.0001", "updated": "2018-06-08T05:10:24.838277"}, [...]}</p>
</ul>
</body>
</html>