๐Ÿ”Œ Embed Widget

Embed the Scammyfy check directly into your website.

Preview

Standard (400x220px)
<iframe
  src="https://scammyfy.de/widget"
  width="400"
  height="220"
  frameborder="0"
  style="border-radius: 12px;"
></iframe>
With pre-fill
<iframe
  src="https://scammyfy.de/widget?q=example.de"
  width="400"
  height="220"
  frameborder="0"
  style="border-radius: 12px;"
></iframe>
Wide (100% width)
<iframe
  src="https://scammyfy.de/widget"
  width="100%"
  height="220"
  frameborder="0"
  style="border-radius: 12px;"
></iframe>

API Alternative

For more control, use our REST API directly:

fetch("https://scammyfy.de/api/v1/check?q=example.de")
  .then(r => r.json())
  .then(data => console.log(data.data.risk));
API Documentation โ†’