We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
<!DOCTYPE html> <html> <head> <title>CSDB API Example</title> </head> <body> <script src="https://cdn.cryptoscamdb.org/js/api/1.0.0/api.js"></script> <script> const CSDB = new api.default({ cache: { enable: true } }); CSDB.check('example.com').then(result => { console.log(result); }); CSDB.getAllScams().then(result => { console.log(result); }); </script> </body> </html>