BUILD ON VOIDHUB
A read-only, no-auth API for the games catalog. Free to use, no API key required.
CORS enabled
Call it from any origin — browser or server.
No auth needed
It's the same public data the site itself reads.
Rate limited
60 requests / minute per IP.
GET GAMES
Returns the current games catalog. This is the same list shown on the Games page — internal admin-only fields (like private notes) are stripped before this response is built.
GET https://www.voidon.top/api/public/gamesQuery params (all optional)
statusOnly return games with this status.
e.g. ?status=active | outdated
categoryOnly return games in this category (case-insensitive).
e.g. ?category=Roblox
featuredOnly return featured games.
e.g. ?featured=true
Example
curl "https://www.voidon.top/api/public/games?status=active&featured=true"Response — 200 OK
[
{
"id": "1788154138376",
"name": "Blox Fruits",
"description": "Auto farm + ESP for Blox Fruits.",
"category": "Roblox",
"status": "active",
"thumbnail": "https://...",
"scriptLink": "https://discord.gg/...",
"robloxUrl": "https://www.roblox.com/games/2753915549",
"placeId": "2753915549",
"features": ["Auto Farm", "ESP"],
"featured": true,
"createdAt": "2026-08-31T05:28:58.376Z",
"updatedAt": "2026-08-31T05:28:58.376Z"
}
]Fields
idStable unique identifier.
nameGame name.
descriptionShort SEO description.
categoryCategory label, e.g. "Roblox", "Simulator".
status"active" or "outdated".
thumbnailThumbnail image URL.
scriptLinkOptional secondary script link (may be empty).
robloxUrlRoblox game page URL, if set.
placeIdRoblox place ID, if known.
featuresArray of feature tag strings.
featuredBoolean.
createdAt / updatedAtISO timestamps.
Rate limited to 60 requests per minute per IP; excess requests get a 429 with a Retry-After header. This endpoint reflects live admin edits with no cache, so there's no need to poll faster than your own use case needs. Something else you'd find useful here? Ask in Discord.