Scoring
Litigation-finance merit score API
Transparent weighted rubric (0-100) scoring whether a single-case claim is fundable from named factors — liabilityStrength 35%, damagesQuantum 20%, defendantCollectability 20%, durationFit 10%, jurisdictionFavorability 10%, counselTrackRecord 5% — with a per-factor breakdown and a fund/review/marginal/decline bucket so the underwrite is fully auditable. Answers 'should we fund this lawsuit', 'what is this case's merit score', 'is this claim fundable'.
Price$0.016per request
MethodPOST
Route/v1/score/litfin-litigation-merit
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
scorelitigation-financelegalunderwritingrubricriskmeritalt-finance
API URL
Integration docshttps://x402.hexl.dev/v1/score/litfin-litigation-meritExample request
{
"liabilityStrength": 0.8,
"damagesQuantum": 0.7,
"defendantCollectability": 0.9,
"durationFit": 0.6,
"jurisdictionFavorability": 0.7,
"counselTrackRecord": 0.8
}Example response
{
"score": 77,
"rating": "fund",
"fundable": true,
"breakdown": [
{
"name": "liabilityStrength",
"value": 0.8,
"weight": 0.35,
"contribution": 28
},
{
"name": "damagesQuantum",
"value": 0.7,
"weight": 0.2,
"contribution": 14
},
{
"name": "defendantCollectability",
"value": 0.9,
"weight": 0.2,
"contribution": 18
},
{
"name": "durationFit",
"value": 0.6,
"weight": 0.1,
"contribution": 6
},
{
"name": "jurisdictionFavorability",
"value": 0.7,
"weight": 0.1,
"contribution": 7
},
{
"name": "counselTrackRecord",
"value": 0.8,
"weight": 0.05,
"contribution": 4
}
],
"method": "weighted rubric: liability 35%, damages 20%, collectability 20%, duration 10%, jurisdiction 10%, counsel 5%"
}Input schema
{
"type": "object",
"required": [
"liabilityStrength",
"damagesQuantum",
"defendantCollectability",
"durationFit",
"jurisdictionFavorability",
"counselTrackRecord"
],
"properties": {
"liabilityStrength": {
"type": "number",
"description": "0-1 probability of establishing liability",
"examples": [
0.8
]
},
"damagesQuantum": {
"type": "number",
"description": "0-1 strength/size of damages",
"examples": [
0.7
]
},
"defendantCollectability": {
"type": "number",
"description": "0-1 ability to collect from defendant",
"examples": [
0.9
]
},
"durationFit": {
"type": "number",
"description": "0-1, shorter expected duration = higher",
"examples": [
0.6
]
},
"jurisdictionFavorability": {
"type": "number",
"examples": [
0.7
]
},
"counselTrackRecord": {
"type": "number",
"examples": [
0.8
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}