Lodol Docs

Steam

API actions for the Steam integration.

Steam

Look up Steam player profiles and the games people own.


Get owned games

List the games a Steam user owns.

Parameters

ParameterTypeRequiredDescription
steam_idstringYesThe Steam ID of the user whose games you want to list.
include_appinfobooleanNoSet to true to include each game's name and images.

Response

{
  "games": [
    {
      "appid": 570,
      "name": "Dota 2",
      "playtime_forever": 120
    }
  ]
}

Get player profiles

Look up Steam player profiles by Steam ID.

Parameters

ParameterTypeRequiredDescription
steam_idsarrayYesThe Steam IDs of the players to look up.

Response

{
  "players": [
    {
      "personaname": "PlayerOne",
      "profileurl": "https://steamcommunity.com/id/playerone/",
      "steamid": "76561198000000000"
    }
  ]
}

On this page