Demand forecasting API built for SMBs. Prevent stockouts, optimize inventory, and automate reorder decisions with AI.
Start Free TrialPredict demand 30-90 days ahead using your sales history. No ML expertise required.
Get notified before stockouts happen. Automatic reorder point calculations.
REST API with webhooks. Shopify & WooCommerce plugins coming soon.
POST /forecast
{
"items": [
{
"sku": "TSHIRT-001",
"current_stock": 150,
"avg_daily_sales": 5.2,
"lead_time_days": 14
}
]
}
// Response
{
"predicted_demand_30d": 156,
"reorder_point": 109,
"stockout_risk": "MEDIUM",
"suggested_action": "Plan reorder in 7 days"
}