Blacklist Information

Download Blacklist

/blacklist.txt

Download Structured Blacklist (JSON)

API Documentation

GET /api/check/[address]

Checks if a specific address is present in the blacklist. Accepts EVM (hex, checksummed or lowercase), SVM / Solana (base58 pubkey), and TVM / Tron (base58check, T-prefixed) addresses.

Example:

fetch('/api/check/0x000b14450b5cfb6b5c1b7311d3186a0cc093dc49')
    .then(response => response.json())
    .then(data => console.log(data));

GET /api/blacklist

Retrieves the entire blacklist as a flat array of native-form addresses across all supported families.

Example:

fetch('/api/blacklist')
    .then(response => response.json())
    .then(data => console.log(data));

GET /blacklist.json

Structured blacklist grouped by address family.