How do I get the amount of players and max players in another game server, by jobid?

I need to be able to find the following:

Amount of players playing in a given server via JobId/GameId
Maximum Players allowed to play in one server via JobId/GameId or PlaceId

How would I go about doing this?
All I need is the API request url if applicable.

2 Likes

Is this for a website or something in-game?

in-game, I just want to be able to check if another server on another game is full or not

I recommend reading this forum post; it contains basically everything you need.

I know how to do this, but I’d prefer to be able to look at one specific server instead of firing several requests to get irrelevant servers.

I’m not aware of any specific API to get information on a single server directly.
But, a possible solution could be that each server were to periodically update its current player count and max players to memory store service using the jobid as a key, then you can fetch the information directly through that, perhaps.

Alright, I’ll look into it thank you