GET /api/systems

Returns a JSON array of available systems.

POST /api/search

To search for entries, send a request body in JSON format like this:

{
    "query": "mario"
}

GET /api/popular

Retrieves a JSON array of the top 50 most popular entries based on their popularity scores.

The response will be an array of objects, each containing the following properties:

Example response:

[
    { "path": "/Dec Pdp-8/S/Spacewar (Unknown).bin", "popularity": 2 },
    { "path": "/w3c html/3/3d.city (Unknown).zip", "popularity": 2 },
    { "path": "/rca chip-8/S/Snek (Public).ch8", "popularity": 1 }
]