Calculators
Cash conversion cycle (CCC) API
Cash Conversion Cycle = DIO + DSO - DPO, the days between paying for inventory and collecting from customers, with the operating cycle and a per-factor breakdown — the canonical working-capital efficiency metric. Answers 'what's my cash conversion cycle', 'how long is cash tied up', 'what's my operating cycle'.
Price$0.01per request
MethodPOST
Route/v1/calc/biz-cash-conversion-cycle
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calccash-conversion-cyclecccworking-capitaldiodsodpoops
API URL
Integration docshttps://x402.hexl.dev/v1/calc/biz-cash-conversion-cycleExample request
{
"dio": 60,
"dso": 45,
"dpo": 30
}Example response
{
"formula": "CCC = DIO + DSO - DPO",
"cashConversionCycleDays": 75,
"operatingCycleDays": 105,
"rating": "moderate",
"breakdown": [
{
"factor": "daysInventoryOutstanding",
"value": 60,
"effect": "+"
},
{
"factor": "daysSalesOutstanding",
"value": 45,
"effect": "+"
},
{
"factor": "daysPayablesOutstanding",
"value": 30,
"effect": "-"
}
]
}Input schema
{
"type": "object",
"required": [
"dio",
"dso",
"dpo"
],
"properties": {
"dio": {
"type": "number",
"description": "days inventory outstanding",
"examples": [
60
]
},
"dso": {
"type": "number",
"description": "days sales outstanding",
"examples": [
45
]
},
"dpo": {
"type": "number",
"description": "days payables outstanding",
"examples": [
30
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}