π―Risk Analytics
Verify just how compliant certain addresses are!
Risk Queries Introduction
πͺ Spell Index
Evaluate Wallet Risk Score
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
requests.get("https://wardanalyticsapi.com/compliance/analyze-address",
headers = {
"api": "YOUR_API_KEY"
},
params = {
"address": "115GnsdVzGYDGQMeTeMxWUJZySfJ4pgiPT"
}){
"address": "0x026713f746e4860f48a8ab2a6020cb2d27ef74f7", // Address requested
"blockchain": "Ethereum", // Blockchain this address belongs to
"risk": 3, // Risk level of this address
"labels": ["Binance", "Exchange"], // Labels assigned to this address
"timestampScanned": 1699290272, // The last time this address was scanned (UNIX)
"directOutgoingExposure": { // The destination of funds of the address
"categories": [ // List of categories of entities (Example: "Exchange")
{
"entities": [ // List of entites (Example: "Binance")
{
"addresses": [ // List of addresses of the entity
{
"hash": "0xeef5105f7c9009d371d6938b310bb849a25c5260",
"quantity": 54318.283074567895 // Total funds sent to this address
}
],
"name": "Individual Wallet",
"quantity": 54318.283074567895 // Total funds sent to this entity
}
],
"name": "Individual Wallet",
"total": 54318.283074567895 // Total funds sent to this category
}
],
"total": 54318.283074567895 // Total funds sent to all categories
}
// The source of funds of the address
"directIncomingExposure": {
"categories": [
{
"entities": [
{
"addresses": [
{
"hash": "0xc94ebb328ac25b95db0e0aa968371885fa516215",
"quantity": 33384.567099151485
}
],
"name": "Individual Wallet",
"quantity": 33384.567099151485
}
],
"name": "Individual Wallet",
"total": 33384.567099151485
},
{
"entities": [
{
"addresses": [
{
"hash": "0x267be1c1d684f78cb4f6a176c4911b741e4ffdc0",
"quantity": 21321.89737103285
}
],
"name": "Kraken",
"quantity": 21321.89737103285
}
],
"name": "Exchange",
"total": 21321.89737103285
}
],
"total": 54706.464470184335
}: { // The destination of funds of the address
"categories": [ // List of categories of entities (Example: "Exchange")
{
"entities": [ // List of entites (Example: "Binance")
{
"addresses": [ // List of addresses of the entity
{
"hash": "0xeef5105f7c9009d371d6938b310bb849a25c5260",
"quantity": 54318.283074567895 // Total funds sent to this address
}
],
"name": "Individual Wallet",
"quantity": 54318.283074567895 // Total funds sent to this entity
}
],
"name": "Individual Wallet",
"total": 54318.283074567895 // Total funds sent to this category
}
],
"total": 54318.283074567895 // Total funds sent to all categories
},
// If empty, these will appear like this. Else, they'll look like the other two fields
"indirectIncomingExposure": {},
"indirectOutgoingExposure": {}
}Primary Fields
Key
Explanation
Source / Destination Fields
Last updated