TokenTact Documentation
When entering your personal information and clicking the ‘Join Now’ button, you agree and accept the Privacy Policy and Terms of Use of the website. Your personal information may be disclosed to third parties providing trading services as outlined in the website’s privacy policy.
Token Tact API – Comprehensive Integration Guide
Introduction
Token Tact is a platform for building, optimizing, and automating trading bots. Our API allows you to manage bots, execute trades, and monitor market data seamlessly.
Authentication & Security
Use these headers for all API calls:
Authorization: Bearer <your API token>
Content-Type: application/json
- Enable 2FA for your Token Tact account.
- Rotate API keys regularly.
- Use IP whitelisting for added security.
Core API Endpoints
- GET /v1/bot/status – Check bot status.
- POST /v1/order/create – Create buy/sell orders.
- GET /v1/order/status – Get order updates.
- POST /v1/bot/start – Start the trading bot.
- POST /v1/bot/stop – Stop the trading bot.
- GET /v1/account/balance – View balances.
- GET /v1/market/ticker – Access live market data.
- POST /v1/alerts/create – Create price alerts.
Example Order Request
{
"pair": "BTC/USDT",
"type": "buy",
"amount": 0.1,
"price": 29500
}
Technical Code Examples
Python: Start the Bot
import requests
API_TOKEN = 'YOUR_API_TOKEN'
headers = {
'Authorization': f'Bearer {API_TOKEN}',
'Content-Type': 'application/json'
}
response = requests.post('https://api.token-tact.com/v1/bot/start', headers=headers)
print(response.json())
Python: Stop the Bot
response = requests.post('https://api.token-tact.com/v1/bot/stop', headers=headers)
print(response.json())
Node.js: Check 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.token-tact.com/v1/bot/status', { headers })
.then(response => console.log(response.data))
.catch(error => console.error(error));
Supported Trading Pairs
Pair | Min Order | Leverage |
---|---|---|
BTC/USDT | 0.001 | 10x |
ETH/USDT | 0.01 | 10x |
BNB/USDT | 0.1 | 5x |
Bot Control Commands
Command | Endpoint | Description |
---|---|---|
Start Bot | POST /v1/bot/start | Activate automated trading |
Stop Bot | POST /v1/bot/stop | Pause bot’s trading activity |
Check Status | GET /v1/bot/status | Retrieve current bot status |
FAQs
Question | Answer |
---|---|
Minimum deposit? | $250 |
Mobile app? | Available via mobile browsers |
Demo accounts? | Yes, demo trading available |
Support
Questions? Reach out to us:
- Email: support@token-tact.com
Empower your trading with Token Tact today!