Synthefy is developer‑first
Python SDK with multimodal forecasting, ready for production. Simple API, powerful results.
Build with the Synthefy platform
Official Python SDK, REST API, and comprehensive docs. Everything you need to ship forecasting in production.
One model, many ways to use it
Try it out for yourself
Get started with a simple pip install and start forecasting in minutes.
$ pip install synthefy1from synthefy import SynthefyAPIClient
2
3with SynthefyAPIClient(api_key="your_api_key") as client:
4 forecast_dfs = client.forecast_dfs(
5 history_dfs=[history_df],
6 target_dfs=[target_df],
7 target_col="sales",
8 timestamp_col="date",
9 metadata_cols=["store_id", "weather_temp", "promotion_active"],
10 model="sfm_moe"
11 )