> For the complete documentation index, see [llms.txt](https://docs.misttrack.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.misttrack.io/openapi/quicknode-add-on-docs.md).

# Quicknode Add-on Docs

Add-on page: [Address Risk Scores](https://www.quicknode.com/add-ons/address-risk-scores)

## Address Label RPC

### Request Example

{% code overflow="wrap" %}

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

{% endcode %}

<table><thead><tr><th width="140.4765625">Parameter</th><th width="96.4296875">Type</th><th>Description</th></tr></thead><tbody><tr><td>blockchain</td><td>string</td><td>All optional values:<br>ETH<br>TRON<br>BNB<br>IoTeX<br>Polygon<br>AVAX<br>ARBITRUM<br>BTC<br>Optimism<br>Base<br>zkSync<br>Merlin<br>Toncoin<br>Solana<br>LTC<br>DOGE<br>BCH<br>HSK<br>Sui</td></tr><tr><td>address</td><td>string</td><td>The address to check for address labels</td></tr></tbody></table>

### Response Example

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

## Address Risk Score RPC

### Request Example

{% code overflow="wrap" %}

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

{% endcode %}

<table><thead><tr><th width="140.4765625">Parameter</th><th width="96.4296875">Type</th><th>Description</th></tr></thead><tbody><tr><td>blockchain</td><td>string</td><td>All optional values:<br>ETH<br>TRON<br>BNB<br>IoTeX<br>Polygon<br>AVAX<br>ARBITRUM<br>BTC<br>Optimism<br>Base<br>zkSync<br>Merlin<br>Toncoin<br>Solana<br>LTC<br>DOGE<br>BCH<br>HSK<br>Sui</td></tr><tr><td>address</td><td>string</td><td>The address to check for address labels</td></tr></tbody></table>

### Response Example

```json
{
    "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](/api-endpoints/get-risk-score-async-api.md#risk-descriptions-for-detail_list)

#### Risk Level Guide

[Click here](/api-endpoints/get-risk-score-async-api.md#risk-level-guide)
