ZeqSupplyChain
Supply chain optimization. Demand forecasting, inventory optimization (EOQ/safety stock), logistics routing — all Zeqond-synchronized for just-in-time precision.
| Endpoint | POST /api/mfg/supply-chain |
| Auth | api-key |
| Rate limit | 10/min |
| Category | manufacturing |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
demandHistory | array | Yes | Historical demand [{ date, quantity }]. |
leadTime_days | number | No | Supplier lead time. |
holdingCost_per_unit | number | No | Inventory holding cost. |
Returns
{ forecast, eoq, safetyStock, reorderPoint, totalCost, zeqond }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"demandHistory": [],
"leadTime_days": 14,
"holdingCost_per_unit": 0
}' \
"https://zeqsdk.com/api/mfg/supply-chain"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-supply-chain.