"
list: API Endpoint for returning a set of gamesystems.

retrieve: API endpoint for return a particular gamesystem.

GET /v2/gamesystems/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "url": "https://api.open5e.com/v2/gamesystems/a5e/?format=api",
            "key": "a5e",
            "name": "Advanced 5th Edition",
            "desc": "",
            "content_prefix": ""
        },
        {
            "url": "https://api.open5e.com/v2/gamesystems/o5e/?format=api",
            "key": "o5e",
            "name": "5th Edition",
            "desc": "Original 5E.",
            "content_prefix": ""
        }
    ]
}