Calculators
Payables turnover & DPO API
Payables turnover = COGS / average payables, with days payables outstanding = 365 / turnover — the standard supplier-payment-pace ratio. Answers 'how fast do I pay suppliers', 'what's my DPO', 'how long do I hold payables'.
Price$0.01per request
MethodPOST
Route/v1/calc/biz-payables-turnover
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcpayables-turnoverdpoaccounts-payableopsfinanceefficiencyworking-capital
API URL
Integration docshttps://x402.hexl.dev/v1/calc/biz-payables-turnoverExample request
{
"cogs": 600000,
"averagePayables": 75000
}Example response
{
"formula": "payablesTurnover = COGS / averagePayables ; DPO = 365 / turnover",
"payablesTurnover": 8,
"daysPayablesOutstanding": 45.63,
"rating": "moderate",
"inputs": {
"cogs": 600000,
"averagePayables": 75000
}
}Input schema
{
"type": "object",
"required": [
"cogs",
"averagePayables"
],
"properties": {
"cogs": {
"type": "number",
"examples": [
600000
]
},
"averagePayables": {
"type": "number",
"examples": [
75000
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}