TSFA
## What is TSFA? TSFA (Time Series Forecasting API) is a REST API that runs ARIMA, Chronos-T5, and LSTM forecasting models on your data. Send a list of numbers, get back point forecasts with 80% and 95% prediction intervals. No infrastructure to set up, no model training required. --- ## Models | Model | Type | Best for | Avg latency | |---|---|---|---| | `arima` | Statistical (AutoARIMA) |…
TSFA endpoints
| Method | Endpoint | Description |
|---|---|---|
| Forecast | ||
| POST |
forecast_univariate_v1_forecast_univariate_post /v1/forecast/univariate |
Generate a point forecast with prediction intervals for a single time series. Uses AutoARIMA in Phase 1. Supports automatic frequency and model selection. |
| POST |
forecast_batch_v1_forecast_batch_post /v1/forecast/batch |
Forecast multiple series in a single request. Available in Phase 2 for Pro/Ultra plans. |
| POST |
forecast_multivariate_v1_forecast_multivariate_post /v1/forecast/multivariate |
Forecast with covariates using TiDE. Available in Phase 2. |
| Validate | ||
| POST |
validate_model_v1_validate_post /v1/validate |
Cross-validate a model on historical data and compute MAE, RMSE, MAPE, SMAPE, and empirical prediction interval coverage. Coming in Phase 1 Week 3. |
| Models | ||
| GET |
list_models_v1_models_get /v1/models |
Returns all models in the catalogue with their specifications and current availability status. Phase 2: AutoARIMA, Chronos, and LSTM are available. |
| Usage | ||
| GET |
get_usage_v1_usage_get /v1/usage |
Returns credit usage and limits for the current billing period. Phase 1: returns mocked data with credits_used=0. |
| Health | ||
| GET |
health_check_health_get /health |
Return API health status. Returns: JSON object with status and version fields. |
TSFA pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $49 / month | — |
|
| ULTRA Recommended | $199 / month | — |
|
| MEGA | $499 / month | — |
|