GET /api/demos/records

Returns the record demo for a specific run


Parameter Required Type Description
wad true string The wad's short name
level true string The level name
category true string The category name

Example Request
https://dsdarchive.com/api/demos/records?wad=doom2&level=Map+01&category=UV+Speed

Example Response (200 OK)
{
  "player": "4shockblast",
  "time": "0:04.97",
  "category": "Pacifist",
  "level": "Map 01",
  "wad": "doom2",
  "engine": "DSDA-Doom v0.27.5cl2",
  "date": "2024-04-06T03:46:50.000Z",
  "notes": ["Also Reality"],
  "file": "http://dsdarchive.com/files/demos/doom2/88132/pa01-497.zip"
}
GET /api/wads/{short_name}

Returns a specific wad details


Parameter Required Type Description
short_name true string The wad's short name

Example Request
https://dsdarchive.com/api/wads/gd

Example Response (200 OK)
{
  "short_name": "gd",
  "name": "Going Down",
  "author": "mouldy",
  "iwad": "doom2",
  "file": "https://dsdarchive.com/files/wads/doom2/1472/gd.zip"
}