Calculators
Inventory turnover & days on hand API
Inventory turnover = COGS / average inventory, with days inventory outstanding = 365 / turnover — the standard inventory-efficiency ratio. Answers 'how many times do I turn inventory', 'what's my days-on-hand', 'is my inventory moving fast enough'.
Price$0.01per request
MethodPOST
Route/v1/calc/biz-inventory-turnover
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcinventory-turnoverdioinventoryopssupply-chainefficiencyfinance
API URL
Integration docshttps://x402.hexl.dev/v1/calc/biz-inventory-turnoverExample request
{
"cogs": 600000,
"averageInventory": 100000
}Example response
{
"formula": "inventoryTurnover = COGS / averageInventory ; daysOnHand = 365 / turnover",
"inventoryTurnover": 6,
"daysInventoryOutstanding": 60.83,
"rating": "healthy",
"inputs": {
"cogs": 600000,
"averageInventory": 100000
}
}Input schema
{
"type": "object",
"required": [
"cogs",
"averageInventory"
],
"properties": {
"cogs": {
"type": "number",
"examples": [
600000
]
},
"averageInventory": {
"type": "number",
"examples": [
100000
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}