Discord to Roblox presence bridge
Wolfgon Overseer
Documentation
Wolfgon Overseer links Discord users to Roblox players with short private codes, then gives the game a live activity snapshot API for in-world display, trusted event reporting, and staff operations.
Public callbacks
Roblox polls activity snapshots without needing an API key.
Protected writes
Bind and log endpoints require Bearer token authentication.
SQLite backed
Codes, binds, audit history, safety records, and settings persist locally.
How It Works
- A Discord user runs
/codeand receives a unique 4-character alphanumeric code via DM. - The user enters this code in the Roblox game.
- The game calls
POST /api/v1/bindto link the code to the Roblox player. - The game periodically calls
GET /api/v1/callbacks/{codes}with all active player codes. - The bot takes a real-time snapshot of each linked Discord user's activities (Spotify, games, etc.) and returns them in a single response.
Base URLs
| Service | URL |
|---|---|
| API | https://api.kiba-is-a.top |
| Documentation | https://docs.kiba-is-a.top |
| Landing Page | https://kiba-is-a.top |
Authentication
Protected endpoints require an API key passed via the Authorization header:
Authorization: Bearer YOUR_API_KEY
The callback endpoint (GET /callbacks) and GET /health are public and do not require authentication.
Quick Links
Database Schema
Tables for users, history, audit records, safety events, and private settings.
Read schema