Calculators
Lead-time demand calculator API
Compute lead-time demand LTD = dailyDemand·leadTime and its variability σ_LTD = σ·sqrt(leadTime) — the demand a replenishment must cover during the lead time. Answers 'expected demand during lead time','lead-time demand variability','units consumed before stock arrives'.
Price$0.01per request
MethodPOST
Route/v1/calc/logi-lead-time-demand
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calclogisticsinventorylead-timedemandreplenishmentsupply-chainvariability
API URL
Integration docshttps://x402.hexl.dev/v1/calc/logi-lead-time-demandExample request
{
"dailyDemand": 50,
"leadTimeDays": 9,
"demandStdDev": 20
}Example response
{
"formula": "LeadTimeDemand = dailyDemand · leadTime ; σ_LTD = σ_demand · sqrt(leadTime)",
"leadTimeDemand": 450,
"leadTimeDemandStdDev": 60,
"inputs": {
"dailyDemand": 50,
"leadTimeDays": 9,
"demandStdDev": 20
}
}Input schema
{
"type": "object",
"required": [
"dailyDemand",
"leadTimeDays"
],
"properties": {
"dailyDemand": {
"type": "number",
"examples": [
50
]
},
"leadTimeDays": {
"type": "number",
"examples": [
9
]
},
"demandStdDev": {
"type": "number",
"description": "optional std dev of daily demand for σ_LTD",
"examples": [
20
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}