Scoring
Supply-chain finance program quality score API
Supply-chain-finance (reverse factoring) program QUALITY score (0-100, higher = better) via a transparent weighted rubric — anchorCreditStrength 0.30, supplierAdoption 0.20, daysPayableExtension 0.15, platformIntegration 0.15, financingDiscountCompetitiveness 0.10, dilutionControl 0.10 — returning an excellent/strong/adequate/weak/poor bucket, an A-F grade, and a per-factor breakdown. Answers 'how good is this SCF program','rate this reverse factoring setup'.
Price$0.016per request
MethodPOST
Route/v1/score/tradefin-supply-chain-finance
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
scoresupply-chain-financereverse-factoringprogramqualitystructured-financerubricworking-capital
API URL
Integration docshttps://x402.hexl.dev/v1/score/tradefin-supply-chain-financeExample request
{
"anchorCreditStrength": 0.85,
"supplierAdoption": 0.6,
"daysPayableExtension": 0.7,
"platformIntegration": 0.8,
"financingDiscountCompetitiveness": 0.65,
"dilutionControl": 0.75
}Example response
{
"qualityScore": 74,
"rating": "strong",
"grade": "C",
"breakdown": [
{
"factor": "anchorCreditStrength",
"value": 0.85,
"weight": 0.3,
"contribution": 25.5
},
{
"factor": "supplierAdoption",
"value": 0.6,
"weight": 0.2,
"contribution": 12
},
{
"factor": "daysPayableExtension",
"value": 0.7,
"weight": 0.15,
"contribution": 10.5
},
{
"factor": "platformIntegration",
"value": 0.8,
"weight": 0.15,
"contribution": 12
},
{
"factor": "financingDiscountCompetitiveness",
"value": 0.65,
"weight": 0.1,
"contribution": 6.5
},
{
"factor": "dilutionControl",
"value": 0.75,
"weight": 0.1,
"contribution": 7.5
}
]
}Input schema
{
"type": "object",
"required": [
"anchorCreditStrength",
"supplierAdoption",
"daysPayableExtension",
"platformIntegration",
"financingDiscountCompetitiveness",
"dilutionControl"
],
"properties": {
"anchorCreditStrength": {
"type": "number",
"description": "0-1",
"examples": [
0.85
]
},
"supplierAdoption": {
"type": "number",
"examples": [
0.6
]
},
"daysPayableExtension": {
"type": "number",
"examples": [
0.7
]
},
"platformIntegration": {
"type": "number",
"examples": [
0.8
]
},
"financingDiscountCompetitiveness": {
"type": "number",
"examples": [
0.65
]
},
"dilutionControl": {
"type": "number",
"examples": [
0.75
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}