NeuroBacktest
Enterprise Only

Enterprise API

Build quantitative pipelines directly into your systems. Available exclusively to Enterprise customers.

Company Analysis

Programmatic access to financials, earnings, news sentiment, and peer comparisons.

Backtesting

Run historical backtests on any supported strategy with full trade logs and risk metrics.

Optimization

Bayesian parameter search with walk-forward validation to find robust strategy settings.

Usage & Monitoring

Track quota consumption, endpoint usage, and response metrics in real time.

Integration Features

REST API with JSON responses
API key authentication (SHA-256 hashed)
Rate limiting with daily quotas
Usage logging and analytics
Priority queue access
Dedicated concurrency slots

API Endpoints

POST
/api/v1/backtest

Run a historical backtest on a single symbol with a specified strategy.

API Key JSON body
{ "symbol": "AAPL", "strategy": "rsi_mean_reversion", "start_date": "2020-01-01", "end_date": "2024-01-01", "params": { ... } }
POST
/api/v1/optimize

Bayesian parameter optimization with configurable trials and objective function.

API Key JSON body
{ "symbol": "TSLA", "strategy": "sma_crossover", "param_space": { "fast": [10,50], "slow": [100,200] }, "trials": 100 }
POST
/api/v1/analyze

Comprehensive company analysis including financials, news sentiment, and peer comparison.

API Key JSON body
{ "symbol": "MSFT", "include_news": true, "include_financials": true }
GET
/api/v1/usage

Retrieve current quota consumption, daily usage, and endpoint breakdown.

API Key
POST
/api/v1/keys

Generate a new API key (Enterprise admin only).

API Key + Admin JSON body
{ "name": "Production", "email": "dev@company.com", "tier": "enterprise" }

Response Format

All endpoints return JSON. Success responses have a 200 status. Errors use standard HTTP status codes with a descriptive message:

// Success
{
  "success": true,
  "data": { ... }
}

// Error
{
  "error": "Invalid API key format",
  "code": 401
}

Rate Limits

Free
100 requests / day
Starter
500 requests / day
Enterprise
10,000 requests / day

Interested in API Access?

Full API documentation, onboarding guides, and integration support are provided directly to approved Enterprise customers. Reach out to discuss your requirements.

Contact Sales