Add 13 ensemble models, deep learning, and technical analysis to your platform with a single API call.
# Get a stock quote
curl -H "X-API-Key: fxp_your_key_here" \
"/api/v1/quote/AAPL"
# Run a 3-month forecast
curl -H "X-API-Key: fxp_your_key_here" \
"/api/v1/forecast/AAPL?horizon=3"
# Get candlestick analysis
curl -H "X-API-Key: fxp_your_key_here" \
"/api/v1/candlestick/AAPL"
# Check your API key status
curl -H "X-API-Key: fxp_your_key_here" \
"/api/v1/status"/api/v1/quote/:symbolAUTHGet real-time stock quote with price, exchange, and currency info.
/api/v1/forecast/:symbolAUTHRun full ensemble forecast (13 R models + Chronos DL). Returns JSON with all model predictions, ensemble signal, and confidence. Query: ?horizon=3
/api/v1/candlestick/:symbolAUTHCandlestick pattern detection with 25+ patterns, RSI, MACD, Bollinger Bands, and technical signal.
/api/v1/statusAUTHCheck API key status, usage counts, rate limits, and expiration.
/api/v1/plansList available B2B plans with pricing and features.
/api/v1/subscribeCreate a new API key. Body: { email, plan }
{
"success": true,
"symbol": "AAPL",
"horizon": 3,
"forecast": {
"ticker": "AAPL",
"signal": "BULLISH",
"models": {
"bsts": { "forecast": [...], "signal": "BULLISH" },
"adam": { "forecast": [...], "signal": "NEUTRAL" },
"sma": { "forecast": [...], "signal": "BULLISH" },
// ... 13 models total
},
"ensemble": {
"forecast": [195.2, 198.7, 201.3],
"direction": "UP",
"confidence": 0.78
},
"chronos": {
"available": true,
"model": "Chronos-tiny",
"target_price": 203.5,
"signal": "BULLISH",
"confidence": 0.72
}
},
"disclaimer": "This data is provided for informational purposes only...",
"dataAttribution": "Market data provided by Yahoo Finance.",
"timestamp": "2026-02-08T12:00:00.000Z"
}All authenticated endpoints require an X-API-Key header with your API key.
Rate limit headers (X-RateLimit-Limit, X-RateLimit-Remaining) are included in every response.
When rate limited, a 429 response includes Retry-After header with seconds to wait.
Forecast endpoints may take 30-90 seconds. Use appropriate timeouts in your HTTP client.
Payment integration coming soon. Keys created now are for testing.
By creating an API key, you agree to our Terms of Service. All data is for informational purposes only and does not constitute financial advice.