Games

List all active games

GET
/v1/games
X-API-KEY<token>

User API key. Get your API key from the dashboard at /settings/developer

In: header

Response Body

curl -X GET "https://api.emudevs.gg/v1/games"
{
  "games": [
    {
      "id": "string",
      "name": "string",
      "slug": "string",
      "description": "string",
      "banner": "string",
      "gameIcon": "string",
      "resourceCount": 0,
      "downloadCount": 0,
      "isFeatured": true,
      "createdAt": "string",
      "updatedAt": "string"
    }
  ]
}