PUBLIC API

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.

Request
GET https://www.voidon.top/api/public/games

Query params (all optional)

status

Only return games with this status.

e.g. ?status=active | outdated

category

Only return games in this category (case-insensitive).

e.g. ?category=Roblox

featured

Only return featured games.

e.g. ?featured=true

Example

curl
curl "https://www.voidon.top/api/public/games?status=active&featured=true"

Response — 200 OK

application/json
[
  {
    "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

id

Stable unique identifier.

name

Game name.

description

Short SEO description.

category

Category label, e.g. "Roblox", "Simulator".

status

"active" or "outdated".

thumbnail

Thumbnail image URL.

scriptLink

Optional secondary script link (may be empty).

robloxUrl

Roblox game page URL, if set.

placeId

Roblox place ID, if known.

features

Array of feature tag strings.

featured

Boolean.

createdAt / updatedAt

ISO 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.