/blacklist.txt
Download Structured Blacklist (JSON)
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.
address - an EVM, SVM, or TVM address.true if the address is in the blacklist, false otherwise.Example:
fetch('/api/check/0x000b14450b5cfb6b5c1b7311d3186a0cc093dc49')
.then(response => response.json())
.then(data => console.log(data));
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));
Structured blacklist grouped by address family.
{ evm: string[], svm: string[], tvm: string[] }
— EVM entries are checksummed hex; SVM entries are canonical base58 pubkeys; TVM entries are base58check, T-prefixed.