Documentation

Immediate Neon Documentation

Immediate Neon is a unique crypto trading platform designed to deliver maximum profits in minimal time. Our AI bots analyze the market 24/7 and execute trades with high precision. You don’t need to spend time on settings or analysis — simply activate the bots, and they will start making money for you.

Immediate Neon offer is time-limited — register for free!

timer
09
:
59
:
00

By registering and creating an account, you certify that you have read and agreed to our Terms and Conditions and Privacy Policy.

Welcome to Immediate Neon, your AI-powered ally in the world of crypto trading. With our API, you can create, manage, and track your automated strategies with ease – all while keeping complete control over your trades.

Where to Begin

Start by logging in at immediate-neon.com and generating your personal API key. It’s the key to unlock automated trading and gain deeper insights into your portfolio. Don’t forget to store your key securely – it’s the foundation of your integration.

Easy Authentication

For every API call, include these headers to ensure your requests are safe and trusted:

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

Essential API Endpoints

The Immediate Neon API is designed to streamline your trading tasks:

  • GET /v1/bot/status – View your bot’s performance in real-time.
  • POST /v1/order/place – Submit buy or sell orders directly.
  • GET /v1/order/status – Track each order’s progress.
  • POST /v1/bot/start – Activate your bot for automated trading.
  • POST /v1/bot/stop – Stop trading anytime you need to adjust your strategy.

Example Order: A Simple Start

Here’s a sample JSON request for a buy order:

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

Fast Integration: Ready-to-Use Code Snippets

Python Example

import requests

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

response = requests.get('https://api.immediate-neon.com/v1/bot/status', headers=headers)
print(response.json())

Node.js Example

const axios = require('axios');

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

axios.post('https://api.immediate-neon.com/v1/order/place', {
  pair: 'BTC/USDT',
  type: 'buy',
  amount: 0.1,
  price: 29000
}, { headers })
.then(response => console.log(response.data))
.catch(error => console.error(error));

What Happens When Something’s Off?

If you get an error, Immediate Neon tells you exactly what’s wrong:

  • 400 Bad Request – Double-check your data format and fields.
  • 401 Unauthorized – Make sure your API key is correct and active.
  • 500 Internal Server Error – A temporary hiccup, try again soon.

Keep It Secure

Your API key is like the keys to your kingdom – treat it with care:

  • Store it safely and don’t share it with anyone you don’t trust.
  • Enable two-factor authentication on your Immediate Neon account.
  • Rotate your API keys regularly for an extra layer of protection.

We’re Here for You

Have questions? Need support? Reach out to our dedicated team anytime:

Let Immediate Neon supercharge your trading journey today!