New Release

Migas 1.5 — First Time Series Foundation Model to Fuse Text + Time Series

·Read more →

Synthefy is developer‑first

Python SDK with multimodal forecasting, ready for production. Simple API, powerful results.

Try it out for yourself

Get started with a simple pip install and start forecasting in minutes.

$ pip install synthefy
1from 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 )