DEV Community

Cover image for Geneva Forecasting API: An Expert System for Time-Series Forecasts
Dom
Dom

Posted on

Geneva Forecasting API: An Expert System for Time-Series Forecasts

Time series forecasting has been around a while, and the Geneva Forecasting Engine has been quietly powering forecasts for over 25 years

While very few developers have heard of it by name, it has been used as the core forecasting engine inside many Oracle products for years. In Oracle OLAP, the DML provides built-in statements (FCOPEN, FCSET, FCEXEC, etc.) that rely on the Geneva engine for demand planning and statistical forecasting.

For a long time, the only way to access the Geneva Forecasting system was through Oracle products or direct licensing from RoadMap Technologies. That changed recently: RoadMap Technologies has now made the same proven engine available to all developers through a simple, modern API.

👉 https://portal.roadmap-tech.com/

Free tier: 1,000 forecasts per month - no credit card required.

The Geneva Forecasting API is intentionally lightweight. Here’s a complete working example:

from geneva_forecast import GenevaClient

client = GenevaClient(
    api_url="https://api.roadmap-tech.com",
    api_key="gva_xxxxxx",
)

result = client.forecast(
    data=[118, 153, 137, 186, 129, 164,
         152, 207, 156, 178, 168, 225,
         167, 205, 176, 248, 185, 213,
         199, 272, 196, 244, 218, 298 ],
    horizon=12,
    wave_periods=[4],
    confidence_level=0.95,
)

print(result.forecast)
Enter fullscreen mode Exit fullscreen mode

Geneva Forecasting API

Geneva is a lightweight, rule-driven engine that automatically evaluates 10 statistical forecasting methods (each with best-fit parameter tuning and seasonality detection). It selects the strongest performer for your specific series and returns the forecast, all in usually under 200 ms.

One of its biggest strengths is the built-in Expert System. An expert system is a classic AI architecture that encodes the knowledge and decision-making process of human specialists into software. Instead of training a giant neural network on millions of examples, it uses explicit rules, heuristics, and evaluation logic to mimic how a domain expert would approach a problem. When you don’t specify a forecasting method, Geneva’s Expert System automatically finds the optimal model by testing all 10 methods against your historical data and performance metrics.

It then returns not only the forecast, but full visibility into its decision:

  • The exact method_name chosen
  • MAPE, MAD, and RMSE metrics
  • Whether smoothing or seasonality handling was applied

Whether you're building dashboards, planning inventory, or adding forecasting to an internal tool, Geneva is a great fit when you want reliable results quickly and don't need (or want) to manage a full custom modeling pipeline.

There are so many ways to add Geneva to different use cases and we are excited to see how developers start building with it.

If you have any questions about the Geneva Forecasting API, we will be happy to answer them here, and a lot of information about it available @ https://portal.roadmap-tech.com/.

I will be posting more about the various other capabilities of the Geneva Forecasting API - from probabilistic forecasting to agentic ai forecasting, follow along for more!

Top comments (0)