Maps

Returns the latest KZ maps.

get/maps

Query parameters

workshop_idinteger

Only include maps with this Steam Workshop ID.

As multiple versions of the same map are represented as different maps, a request may return multiple values (multiple versions of the same map with the same workshop ID).

namestring

Only include maps whose name matches this value.

state'invalid' | 'in-testing' | 'approved'

Only include maps currently in this state.

limitinteger
offsetinteger

Response

totalinteger required

The total number of values available for fetching.

Different endpoints have different hard-limits on how many values they will return at a time. They usually also have an offset query parameter you can use to fetch the next set of values. You can use total to infer when you can stop making requests.

Example response

{
  "values": [
    {
      "mappers": [
        {
          "id": "STEAM_1:1:161178172"
        }
      ],
      "courses": [
        {
          "mappers": [
            {
              "id": "STEAM_1:1:161178172"
            }
          ]
        }
      ],
      "approved_at": "1970-01-01T00:00:00Z"
    }
  ]
}

Changes