Players

Returns CS2 players.

get/players

Query parameters

namestring

Only include players whose name matches this value.

sort_by'join-date' | 'vnl-rating' | 'ckz-rating'

How to sort the results.

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": [
    {
      "id": "STEAM_1:1:161178172",
      "first_joined_at": "1970-01-01T00:00:00Z"
    }
  ]
}

Changes