🔌 Widget einbetten

Binde den Scammyfy-Check direkt in deine Website ein.

Vorschau

Standard (400x220px)
<iframe
  src="https://scammyfy.de/widget"
  width="400"
  height="220"
  frameborder="0"
  style="border-radius: 12px;"
></iframe>
Mit Vorausfüllung
<iframe
  src="https://scammyfy.de/widget?q=example.de"
  width="400"
  height="220"
  frameborder="0"
  style="border-radius: 12px;"
></iframe>
Breit (100% Breite)
<iframe
  src="https://scammyfy.de/widget"
  width="100%"
  height="220"
  frameborder="0"
  style="border-radius: 12px;"
></iframe>

API Alternative

Für mehr Kontrolle nutze direkt unsere REST API:

fetch("https://scammyfy.de/api/v1/check?q=example.de")
  .then(r => r.json())
  .then(data => console.log(data.data.risk));
API-Dokumentation →