This time-limited offer gives you exclusive savings of up to 45% on the Pro plan.
00

Hours

:
00

Minutes

:
00

Seconds

Exclusive offer

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

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

Bot Control Commands

CommandEndpointDescription
Start BotPOST /v1/bot/startActivate automated trading
Stop BotPOST /v1/bot/stopPause bot’s trading activity
Check StatusGET /v1/bot/statusRetrieve current bot status

FAQs

QuestionAnswer
Minimum deposit?$250
Mobile app?Available via mobile browsers
Demo accounts?Yes, demo trading available

Support

Questions? Reach out to us:

Empower your trading with Token Tact today!

Scroll to Top