Calculators
ABC analysis classifier API
Classify an SKU into Pareto A/B/C tiers by its cumulative share of annual value (default thresholds A≤80%, B≤95%, else C) and return the recommended inventory-control policy — the standard ABC stratification rubric. Answers 'is this an A/B/C item','ABC classification threshold','what control policy for this SKU'.
Price$0.01per request
MethodPOST
Route/v1/calc/logi-abc-analysis
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calclogisticsinventoryabc-analysisparetoclassificationstratificationsupply-chain
API URL
Integration docshttps://x402.hexl.dev/v1/calc/logi-abc-analysisExample request
{
"cumulativeValuePercent": 75
}Example response
{
"formula": "Pareto thresholds: A ≤ aThreshold% cumulative value, B ≤ bThreshold%, else C",
"classification": "A",
"cumulativeValuePercent": 75,
"recommendedPolicy": "tight control, frequent review, low safety stock",
"thresholds": {
"A": 80,
"B": 95
},
"inputs": {
"cumulativeValuePercent": 75,
"aThreshold": 80,
"bThreshold": 95
}
}Input schema
{
"type": "object",
"required": [
"cumulativeValuePercent"
],
"properties": {
"cumulativeValuePercent": {
"type": "number",
"description": "this item's cumulative share of total annual value (0-100)",
"examples": [
75
]
},
"aThreshold": {
"type": "number",
"description": "upper bound for class A (default 80)",
"examples": [
80
]
},
"bThreshold": {
"type": "number",
"description": "upper bound for class B (default 95)",
"examples": [
95
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}