discord-botlists.

discord-botlists docs · archived reader

Guides

Status checking

Latency, uptime state, dead list detection.

const board = await lists.refreshStatus();
board.summary; // { live: 33, deprecated: 0, shutdown: 0, unknown: 0 }

board.entries[0];
// { listId, listName, website, state, httpStatus, latencyMs, lastChecked }

// probe, print the unicode console table, get github issue links for dead lists
await lists.checkAndReportStatus();
StateMeaningWhat happens
liveWebsite answered HTTP < 500Stays in the registry
deprecatedSuperseded or announced end of lifePR opens to remove it
shutdownUnreachable or parked domainPR opens to remove it
unknown5xx answers, list is strugglingKept, watched closely
InfoThe hourly GitHub workflow updates the README table and website on main directly. Only deprecated or shutdown detections open a pull request, so registry changes always get a human review.