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
Pair | Min Order | Leverage |
---|---|---|
BTC/USDT | 0.001 | 10x |
ETH/USDT | 0.01 | 10x |
BNB/USDT | 0.1 | 5x |
Additional Bot Commands Table
Command | Endpoint | Description |
---|---|---|
Start Bot | POST /v1/bot/start | Activate automated trading bot |
Stop Bot | POST /v1/bot/stop | Stop the bot’s trading activity |
Check Status | GET /v1/bot/status | Retrieve live bot status |
Support
Questions or need help? Reach out:
- Email: [email protected]
Start your journey with Crypto Tact – trade smarter today!