Skip to content

Endpoints Game Servers

TeemoCell edited this page Jul 20, 2026 · 2 revisions

Game Server Endpoints

Only read-only IGameServersService operations are exposed.

$servers = $steam->gameServers();
Method Description
GetAccountList() Lists game-server accounts available to the key.
`GetAccountPublicInfo(int string $steamId)`
QueryLoginToken(string $loginToken) Queries a game-server login token.
`GetServerSteamIDsByIP(array string $serverIps)`
`GetServerIPsBySteamID(array string $serverSteamIds)`
$accounts = $steam->gameServers()->GetAccountList();

$steamIds = $steam
    ->gameServers()
    ->GetServerSteamIDsByIP(['203.0.113.10:27015']);

Account creation, token reset and account deletion are deliberately not exposed because they mutate server credentials.

Treat login tokens as secrets. Do not place them in logs, URLs shown to users or committed configuration. See Security.

Clone this wiki locally