forked from syntaxerrors/Steam
-
Notifications
You must be signed in to change notification settings - Fork 0
Endpoints Game Servers
TeemoCell edited this page Jul 20, 2026
·
2 revisions
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.
Documentation for teemocell/steam-web-api · Licensed under the MIT License