Welcome to the API documentation. Here you will find details about all the available endpoints.
URL:https://doc.tomanex.io/api/public/ping
Method: GET
Use this endpoint to check the availability of the API.
Parameters: None
Response:
{ "success": true, "message": "pong" }
URL:https://doc.tomanex.io/api/public/tickers
Method: GET
Returns the tickers information for all available markets.
Parameters: None
Response: A list of market tickers with their current data.
URL:https://doc.tomanex.io/api/public/ticker?market=TMC_USDT
Method: GET
Retrieve ticker information for a specific market.
Parameters:
TMC_USDT
).Response: Details about the ticker, including bid, ask, last price, volume, and more.
URL:https://doc.tomanex.io/api/public/book?market=TMC_USDT&side=sell&limit=5&page=1
Method: GET
Fetch the order book for a specific market and side (buy or sell).
Parameters:
TMC_USDT
).buy
or sell
.Response: A paginated list of orders based on the side and market specified.
URL:https://doc.tomanex.io/api/public/depth?market=TMC_USDT&limit=50&page=1
Method: GET
Retrieve the market depth for a specific market.
Parameters:
TMC_USDT
).Response: Depth data for the specified market, including asks and bids.
URL:https://doc.tomanex.io/api/public/history?market=TMC_USDT&limit=50&page=1
Method: GET
Retrieve the transaction history for a specific market.
Parameters:
TMC_USDT
).Response: A paginated list of transaction history for the specified market.