Public Source Query API endpoints

We have ran into the problem when making some internal tools, that there was no public endpoints (besides one from valve, being unreliable and slow) to query a source game server.

We have developed a serverless API for making querys to any gameserver, instructions can be found below with an example response.

//https://gameserveranalytics.com/api/v2/query?ip=193.243.190.39&port=27015&game=source
{
    "game": "garrysmod",
    "players": 62,
    "max_players": 128,
    "version": "DarkRP",
    "map": "rp_downtown_tits_v2",
    "name": " TitsRP|Battlepass|High-FPS|Pets|Custom"
}

The API Request endpoints are as simple as shown above, https://gameserveranalytics.com/api/v2/query?ip=193.243.190.39&port=27015&game=source Supported games are source (Garry’s Mod, Rust, TF2, etc), minecraft, and palworld

This API is completely free to use, and does not cache any results or have any rate limits.