Blacklist Information

Download Blacklist

/blacklist.txt

API Documentation

GET /api/check/[address]

Checks if a specific address is present in the blacklist.

Example:

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

GET /api/blacklist

Retrieves the entire blacklist.

Example:

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