Look them up before you trust them.

File a report
0+
cases on file
8
categories
100%
human checked

Nothing goes public unchecked.

Every report walks the same little path before it lands in the registry. No shortcuts, no drama.

1 2 3 4
01 Filed 02 Investigated 03 Approved 04 Published

Looked after by the Owners Alliance.

A group of community leaders and server owners who deal with this stuff firsthand, and got tired of watching the same names burn one community after another.

Owners Alliance · HQ

Two sets of eyes

Officers investigate, supervisors approve. Nothing publishes on one person's say-so.

Run by real mods

Built by the people who actually moderate servers, not an anonymous committee.

Follows the trail

Cases link Discord, Minecraft, and more, so a name change does not wipe the slate.

The registry, in your code.

Query the same records straight from your moderation bot, screening flow, or marketplace. No key, no signup, just a friendly GET.

GET/api/public/reports/search
GET/api/public/reports/:id
GET/api/public/reports/:id/evidence
now playing ยท api.js
// look someone up before you trust them
const res = await fetch(
  'https://abuse.wtf/api/public/reports/search' +
  '?search=that_one_guy&report_type=scamming'
);

const data = await res.json();
// data.total   -> 3 prior cases
// data.reports -> titles, evidence, dates
Copied