Skip to main content
GET
https://api.credprotocol.com
/
api
/
v2
/
score
/
boosted
/
{address}
curl -X GET "https://api.credprotocol.com/api/v2/score/boosted/vitalik.eth" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  "score": 920,
  "base_score": 847,
  "boost": 73,
  "classification": "Excellent",
  "boosts": {
    "ens": 20,
    "gitcoin_passport": 35,
    "poaps": 18
  },
  "model": "andromeda",
  "cached": false,
  "timestamp": "2024-01-15T10:30:00Z"
}

Overview

Returns a boosted credit score that combines on-chain activity with verified off-chain data sources for a more comprehensive creditworthiness assessment.
Boosted scores incorporate identity attestations, social reputation, and other verified off-chain data.

Path Parameters

address
string
required
Ethereum address or ENS name (e.g., vitalik.eth or 0x742d35Cc6634C0532925a3b844Bc9e7595f0Ab17)

Response

address
string
The resolved Ethereum address (checksummed)
score
integer
Boosted credit score between 300 and 1000
base_score
integer
The original on-chain only score
boost
integer
Points added from off-chain data
classification
string
Score classification: Low, Fair, Good, Very Good, or Excellent
boosts
object
Breakdown of boost sources
boosts.ens
integer
Points from ENS ownership
boosts.gitcoin_passport
integer
Points from Gitcoin Passport score
boosts.poaps
integer
Points from POAP attendance
cached
boolean
Whether the response was served from cache

Boost Sources

SourceMax BoostDescription
ENS+20Owning an ENS domain linked to the address
Gitcoin Passport+50Based on Gitcoin Passport humanity score
POAPs+30Attendance at verified events
curl -X GET "https://api.credprotocol.com/api/v2/score/boosted/vitalik.eth" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  "score": 920,
  "base_score": 847,
  "boost": 73,
  "classification": "Excellent",
  "boosts": {
    "ens": 20,
    "gitcoin_passport": 35,
    "poaps": 18
  },
  "model": "andromeda",
  "cached": false,
  "timestamp": "2024-01-15T10:30:00Z"
}

When to Use Boosted Scores

Use boosted scores for more accurate risk assessment when making lending decisions. The additional identity verification reduces the risk of sybil attacks.
When you need to assess the trustworthiness of a counterparty, boosted scores provide a more holistic view by incorporating reputation data.
Offer better terms or reduced requirements to users with high boosted scores, as they’ve demonstrated verified identity and reputation.