Wallet Risk Endpoint
Example code for the /wallet-audit/check method. Сomplete guide on how to use /wallet-audit/check in GetBlock Address Audit documentation.
Body Parameters
Parameter
Type
Required
Description
Request Example
curl --location --request POST 'https://services.getblock.io/v1/wallet-audit/check' \
-- header 'Authorization: Bearer YOUR_API_KEY',
--header 'Content-Type: application/json' \
--data-raw ' { "network": "ETH", "address": "0xa45f...a675"}'import axios from "axios";
const data =
{ "network": "ETH", "address": "0xa45f...a675"};
const config = {
method: "post",
url: "https://services.getblock.io/v1/wallet-audit/check",
headers: {
Authorization: "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
data: data,
};
axios(config)
.then((response) => console.log(JSON.stringify(response.data, null, 2)))
.catch((error) => console.log(error));
Response Example
{
"data": {
"message": "Success",
"walletAddress": "0xa45f...a675",
"status": "Fraud",
"probabilityFraud": "0.9329851866",
"token": null,
"chain": "ETH",
"lastChecked": "2026-03-19T07:02:56.000Z",
"forensic_details": {
"cybercrime": "0",
"money_laundering": "0",
"number_of_malicious_contracts_created": "0",
"gas_abuse": "0",
"financial_crime": "0",
"darkweb_transactions": "0",
"reinit": "0",
"phishing_activities": "0",
"fake_kyc": "0",
"blacklist_doubt": "0",
"fake_standard_interface": "0",
"data_source": "",
"stealing_attack": "0",
"blackmail_activities": "0",
"sanctioned": "0",
"malicious_mining_activities": "0",
"mixer": "0",
"fake_token": "0",
"honeypot_related_address": "0"
},
"checked_times": 7,
"createdAt": "2026-03-19T06:52:28.000Z",
"updatedAt": "2026-05-18T11:11:19.000Z",
"sanctionData": [
{
"id": 212143,
"trustscore_id": 18360032,
"category": null,
"name": null,
"description": null,
"url": null,
"isSanctioned": false,
"createdAt": "2026-05-18T11:11:19.000Z",
"updatedAt": "2026-05-18T11:11:19.000Z"
}
]
}
}Response Parameters
Error Handling
Last updated
Was this helpful?