Quicknode Add-on Docs

JSON RPC example for quicknode add-on

Add-on page: Address Risk Scores

Address Label RPC

Request Example

for Ethereum Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressLabel", "params": [{"chain": "ETH", "address": "0xd551234ae421e3bcba99a0da6d736074f22192ff"}]}

for BNB Smart Chain Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressLabel", "params": [{"chain": "BNB", "address": "0x631fc1ea2270e98fbd9d92658ece0f5a269aa161"}]}

for Bitcoin Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressLabel", "params": [{"chain": "BTC", "address": "bc1q4c8n5t00jmj8temxdgcc3t32nkg2wjwz24lywv"}]}

for TRON Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressLabel", "params": [{"chain": "TRX", "address": "TTd9qHyjqiUkfTxe3gotbuTMpjU8LEbpkN"}]}

for Arbitrum Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressLabel", "params": [{"chain": "ARBITRUM", "address": "0xb38e8c17e38363af6ebdcb3dae12e0243582891d"}]}

Response Example

{
    "jsonrpc": "2.0",
    "result": {
        "label_list": [
            "Binance",
            "hot"
        ],
        "label_type": "exchange"
    },
    "id": 1
}

Address Risk Score RPC

Request Example

for Ethereum Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressRiskScore", "params": [{"chain": "ETH", "address": "0x9225ce4129f21ae0369a21f8c056c70a7d31e831"}]}

for BNB Smart Chain Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressRiskScore", "params": [{"chain": "BNB", "address": "0x9bc7ac47b3066b954deddaaec347ce83fd90fc8a"}]}

for Bitcoin Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressRiskScore", "params": [{"chain": "BTC", "address": "12t9YDPgwueZ9NyMgw519p7AA8isjr6SMw"}]}

for TRON Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressRiskScore", "params": [{"chain": "TRX", "address": "TT1eYPoYZYszKnFKhHe8LFyDcDwHXSeLdh"}]}

for Arbitrum Endpoint

{"jsonrpc": "2.0", "id": 1, "method": "mt_addressRiskScore", "params": [{"chain": "ARBITRUM", "address": "0xc29D94386FF784006Ff8461c170d1953Cc9E2B5C"}]}

Response Example

{
    "jsonrpc": "2.0",
    "result": {
        "score": 51,
        "hacking_event": "",
        "detail_list": [
            "Interact With Suspected Malicious Address",
            "Interact With High-risk Tag Addresses",
            "Interact With Medium-risk Tag Addresses"
        ],
        "risk_level": "Low"
    },
    "id": 1
}

Risk Descriptions For detail_list

Click here

Risk Level Guide

Click here

Last updated