Skip to main content

sc_getAddressAnalysis

Get the risk assessment of a crypto address (score, severity, entity name and entity type)

Request Parameters

NameTypeRequiredDescription
hashstringYesThe address hash (needs to match the endpoint's blockchain)

Request Example

{
"jsonrpc": "2.0",
"method": "sc_getAddressAnalysis",
"params": { "hash": "0xb6f5ec1A0a9cd1526536D3F0426c429529471F40" },
"id": 1
}

Response Parameters

NameTypeNullableDescription
scoreintNoThe score between 1 (critical risk) to 100 (no risk)
severitystringNoThe risk severity, can be: CRITICAL_RISK, HIGH_RISK, MEDIUM_RISK, LOW_RISK
entityTypestringYesThe type of the entity, see full list of entity types
entityNamestringYesThe name of the entity owning the address

Response Example

Success

{
"jsonrpc": "2.0",
"result": {
"score": 1,
"severity": "CRITICAL_RISK",
"entityType": "Sanction list",
"entityName": "Sinbad.io"
},
"id": 1
}

Error

{
"jsonrpc": "2.0",
"error": {
"code": -32602,
"message": "Invalid address hash"
},
"id": 1
}