CryptoTact Documentation

We value your feedback, questions, and inquiries. Our team at CryptoTact is here to assist you every step of the way. Whether you have a technical query, need assistance with account setup, or simply want to share your experience with us, we’re ready to listen and help.

*By entering your personal details here and clicking the Join Now button you agree and accept the Website Privacy Policy and Terms & Conditions.

Crypto Tact API – Advanced Integration Guide

Introduction

Welcome to Crypto Tact – a robust platform to automate your trading strategies, monitor market data, and control your trading bot seamlessly.

Authentication & Security

Include these headers in every API request for secure access:

Authorization: Bearer <your API token>
Content-Type: application/json

  • Use 2FA on your account for extra security.
  • Rotate API keys regularly.
  • Restrict access with IP whitelisting.

Core API Endpoints

  • GET /v1/bot/status – Get live bot status.
  • POST /v1/order/create – Submit buy/sell orders.
  • GET /v1/order/status – Check order status.
  • POST /v1/bot/start – Start automated trading.
  • POST /v1/bot/stop – Pause the bot.
  • GET /v1/account/balance – View balances.
  • GET /v1/market/ticker – Access live market data.
  • POST /v1/alerts/create – Set up 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.cryptotact.net/v1/bot/start’, headers=headers)
print(response.json())

Python: Stop the Bot

response = requests.post(‘https://api.cryptotact.net/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.cryptotact.net/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

Additional Bot Commands Table

CommandEndpointDescription
Start BotPOST /v1/bot/startActivate automated trading bot
Stop BotPOST /v1/bot/stopStop the bot’s trading activity
Check StatusGET /v1/bot/statusRetrieve live bot status

Support

Questions or need help? Reach out:

Start your journey with Crypto Tact – trade smarter today!