Scoring
Transition-finance credibility score API
Anti-greenwashing weighted rubric (0-100) scoring a transition-finance plan from emissionsReductionAmbition 30%, capexAlignment 25%, governanceAccountability 20%, interimTargetsCredibility 15%, disclosureQuality 10%, returning an A-F grade, a greenwashing-risk bucket, and a per-factor breakdown. Answers 'is this transition plan credible', 'what is the greenwashing risk', 'score this net-zero plan'.
Price$0.016per request
MethodPOST
Route/v1/score/litfin-transition-finance
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
scoretransition-financeesgclimategreenwashingsustainabilityrubriccredibility
API URL
Integration docshttps://x402.hexl.dev/v1/score/litfin-transition-financeExample request
{
"emissionsReductionAmbition": 0.7,
"capexAlignment": 0.6,
"governanceAccountability": 0.8,
"interimTargetsCredibility": 0.5,
"disclosureQuality": 0.7
}Example response
{
"score": 66.5,
"rating": "D",
"greenwashingRisk": "moderate",
"breakdown": [
{
"name": "emissionsReductionAmbition",
"value": 0.7,
"weight": 0.3,
"contribution": 21
},
{
"name": "capexAlignment",
"value": 0.6,
"weight": 0.25,
"contribution": 15
},
{
"name": "governanceAccountability",
"value": 0.8,
"weight": 0.2,
"contribution": 16
},
{
"name": "interimTargetsCredibility",
"value": 0.5,
"weight": 0.15,
"contribution": 7.5
},
{
"name": "disclosureQuality",
"value": 0.7,
"weight": 0.1,
"contribution": 7
}
],
"method": "weighted rubric: ambition 30%, capex 25%, governance 20%, interim targets 15%, disclosure 10%"
}Input schema
{
"type": "object",
"required": [
"emissionsReductionAmbition",
"capexAlignment",
"governanceAccountability",
"interimTargetsCredibility",
"disclosureQuality"
],
"properties": {
"emissionsReductionAmbition": {
"type": "number",
"description": "0-1",
"examples": [
0.7
]
},
"capexAlignment": {
"type": "number",
"description": "0-1 share of capex aligned to the transition",
"examples": [
0.6
]
},
"governanceAccountability": {
"type": "number",
"examples": [
0.8
]
},
"interimTargetsCredibility": {
"type": "number",
"examples": [
0.5
]
},
"disclosureQuality": {
"type": "number",
"examples": [
0.7
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}