Documentation

Immediate Nextgen API Guide

At Immediate Nextgen, we provide powerful API tools for Aussie crypto traders. Whether you're a developer building automated strategies or an investor exploring algorithmic trading, our documentation makes integration straightforward and rewarding

1️⃣ Introduction

Welcome to Immediate Nextgen! Our API enables traders to build sophisticated automated trading strategies, execute orders, manage AI bots, and access real-time market data securely from anywhere.

2️⃣ Authentication & Security

For every API call, include these headers:

Authorization: Bearer <your API token>
Content-Type: application/json
  • Enable 2FA on your Immediate Nextgen account.
  • Rotate API keys regularly for security.
  • Use IP whitelisting to restrict API access.

3️⃣ Core API Endpoints

  • GET /v1/bot/status – Retrieve the bot’s live status.
  • POST /v1/order/create – Place buy or sell orders.
  • GET /v1/order/status – Check the status of your orders.
  • POST /v1/bot/start – Start your trading bot.
  • POST /v1/bot/stop – Pause the trading bot.
  • GET /v1/account/balance – Check account balances.
  • GET /v1/market/ticker – Access live market data.

4️⃣ Example Order Request

{
  "pair": "BTC/USDT",
  "type": "buy",
  "amount": 0.1,
  "price": 29500
}

5️⃣ How to Manage Bots via API

Managing your trading bots programmatically is straightforward. Here’s a quick overview of how to start, stop, and monitor your bot’s status using the API:

🔹 Start Bot (Python)

import requests

API_TOKEN = 'YOUR_API_TOKEN'
headers = {
    'Authorization': f'Bearer {API_TOKEN}',
    'Content-Type': 'application/json'
}

response = requests.post('https://api.immediate-nextgen.org/v1/bot/start', headers=headers)
print(response.json())

🔹 Stop Bot (Python)

response = requests.post('https://api.immediate-nextgen.org/v1/bot/stop', headers=headers)
print(response.json())

🔹 Check Bot Status (Node.js)

const axios = require('axios');

const API_TOKEN = 'YOUR_API_TOKEN';
const headers = {
  'Authorization': `Bearer ${API_TOKEN}`,
  'Content-Type': 'application/json'
};

axios.get('https://api.immediate-nextgen.org/v1/bot/status', { headers })
  .then(response => console.log(response.data))
  .catch(error => console.error(error));

💡 Pro Tip: Always monitor your bot’s status before placing new orders to avoid conflicts and ensure smooth trading operations.

6️⃣ Supported Trading Pairs

Pair Minimum Order Leverage
BTC/USDT 0.001 10x
ETH/USDT 0.01 10x
BNB/USDT 0.1 5x

7️⃣ Bot Control Commands Table

Command Endpoint Description
Start Bot POST /v1/bot/start Activates automated trading
Stop Bot POST /v1/bot/stop Pauses trading bot activity
Check Status GET /v1/bot/status Retrieve current bot status

8️⃣ FAQs

Question Answer
Minimum deposit? $375 AUD
Mobile app? Access via any browser on mobile devices worldwide
Is there a demo mode? Yes, you can test with simulation mode

📞 Support

For any questions, please contact:

Automate your trading success with Immediate Nextgen today!

Scroll to Top