
Nexonix Profit Documentation
Get a 64%+ increase in profits every month with our proven artificial
intelligence based bot tested on 23 700+ investors!
Sign up in 30 seconds and make a profit today
📖 Nexonix Profit API Guide
Overview
Nexonix Profit is a reliable and secure crypto trading bot designed to automate your trading on popular cryptocurrency exchanges. It offers a comprehensive API that allows you to integrate advanced trading strategies seamlessly.
Setup and API Keys
Getting API Access
- Sign up on the Nexonix Profit website and complete your profile.
- In your dashboard, navigate to the API Management section.
- Create a new API key, selecting the permissions you need:
- View account balances
- Place and manage orders
- Access trade history
- Make sure to store your API Key and API Secret securely and never share them.
API Authentication
All requests to the Nexonix API must be authenticated using HTTPS headers as shown below:
Authorization: Bearer <your API token>
Content-Type: application/json
Example API call to get bot details:
curl -X GET "https://api.nexonixprofit.com/v1/bot/status" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
Available API Endpoints
Key Endpoints
GET /v1/bot/status
— Retrieve current status of your trading bot.POST /v1/order/new
— Submit a new trade order.GET /v1/order/details
— Check order execution details.POST /v1/bot/activate
— Activate the bot and start trading.POST /v1/bot/deactivate
— Deactivate the bot and stop trading.
Sample Order Creation
{
"pair": "ETH/USDT",
"type": "sell",
"amount": 0.05,
"price": 2200
}
Error Codes
The API uses standard error codes to help you identify and fix issues:
400 Bad Request
— The request data is invalid or incomplete.401 Unauthorized
— API token is missing or incorrect.500 Internal Server Error
— An issue on the server side.
Example error response JSON:
{
"status": 401,
"error": "Authentication failed. Invalid API token."
}
Practical Examples
Using Python
import requests
API_TOKEN = 'YOUR_API_TOKEN'
headers = {
'Authorization': f'Bearer {API_TOKEN}',
'Content-Type': 'application/json'
}
response = requests.get('https://api.nexonixprofit.com/v1/bot/status', headers=headers)
print(response.json())
Using Node.js
const axios = require('axios');
const API_TOKEN = 'YOUR_API_TOKEN';
const headers = {
'Authorization': `Bearer ${API_TOKEN}`,
'Content-Type': 'application/json'
};
axios.post('https://api.nexonixprofit.com/v1/order/new', {
pair: 'ETH/USDT',
type: 'sell',
amount: 0.05,
price: 2200
}, { headers })
.then(response => console.log(response.data))
.catch(error => console.error(error));
Best Practices
Security Tips
- Do not expose your API keys publicly or share them with others.
- Enable 2FA on your Nexonix Profit account for added protection.
- Rotate API keys periodically to minimize security risks.
Contact and Support
If you have any questions or require assistance, please contact our support team:
- Email: [email protected]