API DocumentationPowerful APIs
Powerful APIs
for Developers
Integrate NeuroX AI capabilities into your applications with our comprehensive REST API. Use authentication, prediction endpoints, and feedback loops.
Lightning Fast
Sub-100ms response times for optimal performance
Global CDN
Edge locations worldwide for minimal latency
99.9% Uptime
Enterprise-grade reliability and availability
Getting Started
Get started with our API in minutes
Authentication
Use an API key (X-API-KEY) or OAuth2 token.
Example header:
Authorization: Bearer <token>1
Get API Key
Contact us to get your API key for accessing our prediction endpoints
2
Make Predictions
Send lead data to /v1/predict to get AI-powered predictions
3
Provide Feedback
Send actual outcomes to /v1/feedback to improve model accuracy
Popular API Endpoints
Explore our most used API endpoints
POST
/v1/predictGet predictions based on lead data using our AI models
Request:
{
"model": "neurox-engage-v1",
"input": {
"lead_data": {
"email": "user@example.com",
"company": "Example Corp",
"industry": "SaaS"
}
}
}Response:
{
"status": "success",
"prediction": {
"score": 0.87,
"category": "High-Likelihood"
},
"model_version": "2025-03-15"
}POST
/v1/feedbackSend true outcome for model retraining
Request:
{
"prediction_id": "abc123",
"actual_outcome": true
}Response:
{
"status": "success",
"message": "Feedback recorded successfully"
}Code Example
See how easy it is to integrate our API
JavaScript Example
// Initialize the client
const apiKey = 'your-api-key-here';
const baseUrl = 'https://api.neuroxai.com';
// Make prediction request
async function predictLead() {
try {
const response = await fetch(baseUrl + '/v1/predict', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-KEY': apiKey
},
body: JSON.stringify({
model: 'neurox-engage-v1',
input: {
lead_data: {
email: 'user@example.com',
company: 'Example Corp',
industry: 'SaaS'
}
}
})
});
const result = await response.json();
console.log('Prediction:', result.prediction);
} catch (error) {
console.error('Error:', error);
}
}
predictLead();