Scalable ML-powered APIs for forecasting, risk analytics, and market insights — built for developers and quants.
Plug our APIs directly into your platform and start delivering ML-powered insights in minutes.
Enter any asset symbol and get instant ML-powered insights from our API.
Type a ticker or pick one below
Demo uses mock ML logic. Connect your own backend for live data.
The QuantAPI REST API provides ML-powered financial analytics via simple HTTP requests. All responses are JSON. Base URL: https://api.quantapi.io/v1
Returns trend direction, confidence score, and volatility estimate for a given asset symbol using our short-term forecasting model.
| Parameter | Type | Required | Description |
|---|---|---|---|
asset | string | required | Asset ticker symbol (e.g. AAPL, BTC) |
GET https://api.quantapi.io/v1/forecast?asset=AAPL
{
"trend": "uptrend",
"confidence": 0.64,
"volatility": 0.21
}
Returns a qualitative risk label and numerical risk score for the specified asset based on drawdown and volatility metrics.
| Parameter | Type | Required | Description |
|---|---|---|---|
asset | string | required | Asset ticker symbol |
GET https://api.quantapi.io/v1/risk-score?asset=AAPL
{
"risk": "medium",
"score": 0.55
}
Detects structural breaks and unusual market behavior using statistical anomaly scoring. Returns a boolean flag and a continuous score.
| Parameter | Type | Required | Description |
|---|---|---|---|
asset | string | required | Asset ticker symbol |
GET https://api.quantapi.io/v1/anomaly?asset=AAPL
{
"anomaly": false,
"score": 0.12
}
import requests res = requests.get('https://api.quantapi.io/v1/forecast', params={'asset': 'AAPL'}) data = res.json() print(data['trend'], data['confidence'])