TokenTact Documentation

Become part of our growing community! Whether you’re a newbie or an experienced investor, TokenTact is your trusted partner when it comes to exploring the dynamic world of cryptocurrencies. Discover smarter and easier ways to grow your wealth with TokenTact.

*By entering your personal details here and clicking the Join Now button you agree and accept the Website Privacy Policy and Terms & Conditions.
*Your personal information may be shared with third parties providing trading services as provided in the Website privacy policy.

TokenTact API – Developer Integration Guide

1️⃣ Introduction

TokenTact offers an advanced platform for automating cryptocurrency trading strategies. Through its API, developers can programmatically manage bots, execute trades, and access real-time market data, facilitating efficient and automated trading operations.

2️⃣ Authentication & Security

All API requests require proper authentication to ensure security and integrity. Include the following headers in your requests:

Authorization: Bearer <YOUR_API_TOKEN>
Content-Type: application/json

  • Enable Two-Factor Authentication (2FA) on your TokenTact account.
  • Regularly rotate your API keys to maintain security.
  • Implement IP whitelisting to restrict access to trusted sources.

3️⃣ Core API Endpoints

  • GET /v1/bot/status – Retrieve the current status of your trading bot.
  • POST /v1/order/create – Place a new buy or sell order.
  • GET /v1/order/status – Check the status of an existing order.
  • POST /v1/bot/start – Initiate the trading bot.
  • POST /v1/bot/stop – Halt the trading bot’s operations.
  • GET /v1/account/balance – Access your account balance details.
  • GET /v1/market/ticker – Obtain real-time market data.
  • POST /v1/alerts/create – Set up price alerts for specific trading pairs.

4️⃣ Example: Creating an Order

{
“pair”: “BTC/USDT”,
“type”: “buy”,
“amount”: 0.1,
“price”: 29500
}

5️⃣ Managing Bots via API

Utilize the following code snippets to control your trading bots programmatically:

🔹 Python: Starting the Bot

import requests

API_TOKEN = ‘YOUR_API_TOKEN’
headers = {
‘Authorization’: f’Bearer {API_TOKEN}’,
‘Content-Type’: ‘application/json’
}

response = requests.post(‘https://api.tokentact.co/v1/bot/start’, headers=headers)
print(response.json())

🔹 Python: Stopping the Bot

response = requests.post(‘https://api.tokentact.co/v1/bot/stop’, headers=headers)
print(response.json())

🔹 Node.js: Checking Bot Status

const axios = require(‘axios’);

const API_TOKEN = ‘YOUR_API_TOKEN’;
const headers = {
‘Authorization’: `Bearer ${API_TOKEN}`,
‘Content-Type’: ‘application/json’
};

axios.get(‘https://api.tokentact.co/v1/bot/status’, { headers })
.then(response => console.log(response.data))
.catch(error => console.error(error));

6️⃣ Supported Trading Pairs

PairMinimum OrderLeverage
BTC/USDT0.00110x
ETH/USDT0.0110x
BNB/USDT0.15x

7️⃣ Bot Control Commands

CommandEndpointDescription
Start BotPOST /v1/bot/startInitiates the trading bot.
Stop BotPOST /v1/bot/stopHalts the trading bot’s operations.
Check StatusGET /v1/bot/statusRetrieves the current status of the bot.

8️⃣ FAQs

QuestionAnswer
What is the minimum deposit?$250
Is there a mobile application?The platform is accessible via mobile browsers.
Is a demo account available?Yes, a simulation mode is available for testing.

📞 Support

For assistance, please contact: