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
| Parameter | Type | Required | Description |
|---|---|---|---|
steam_id | string | Yes | The Steam ID of the user whose games you want to list. |
include_appinfo | boolean | No | Set 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
| Parameter | Type | Required | Description |
|---|---|---|---|
steam_ids | array | Yes | The Steam IDs of the players to look up. |
Response
{
"players": [
{
"personaname": "PlayerOne",
"profileurl": "https://steamcommunity.com/id/playerone/",
"steamid": "76561198000000000"
}
]
}