Search the Abuse Database

Look up scammers, griefers, harassers and bad actors across online communities. Every report is verified by our team before being published.

Copied!

Verified Reports You Can Trust

Every report goes through a rigorous verification process before being published to the database.

01

Report Submitted

Community members or officers submit detailed reports with evidence of abuse, scamming, or other violations.

02

Investigation

Our trained officers investigate each report, verifying evidence and cross-referencing with existing data.

03

Supervisor Review

A supervisor reviews and approves the report, ensuring accuracy and fairness before it becomes public.

04

Published

Approved reports are published to the public database and accessible via our website and API.

Backed by the
Owners Alliance

abuse.wtf is built and maintained by the Owners Alliance, a coalition of experienced community leaders dedicated to making online spaces safer for everyone.

Multi-layer verification. Every report is reviewed by trained officers and approved by supervisors before publication.
Community governed. Run by server owners and administrators who understand the real challenges of moderation.
Cross-platform data. Reports link Discord, Minecraft, and other accounts to build a comprehensive picture.
Owners Alliance Owners Alliance

Integrate with Your Tools

Access our public REST API to query reports programmatically. Build plugins, bots, or custom integrations.

GET /api/public/reports/search
GET /api/public/reports/:id
GET /api/public/reports/:id/evidence
View Full Documentation
// Search for reports by username
const response = await fetch(
  'https://abuse.wtf/api/public/reports/search'
  + '?reported_user_id=123456'
  + '&report_type=scamming'
);

const data = await response.json();
// { success: true, total: 3, reports: [...] }