SteamID.com API
Steam Web API and XML API drop-in replacement
Endpoint: GET /ISteamUser/GetPlayerSummaries/v0002
Tag: Legacy Drop-in
Endpoint: GET /ISteamUser/GetPlayerBans/v1
Tag: Legacy Drop-in
Endpoint: GET /IPlayerService/GetOwnedGames/v0001
Tag: Legacy Drop-in
Endpoint: GET /api/v1/players/{steamId64}
Tag: Modern API
Endpoint: GET /api/v1/players/{steamId64}/games
Tag: Modern API
Endpoint: GET /api/v1/players/{steamId64}/friends
Tag: Modern API
Endpoint: GET /api/v1/players/{steamId64}/bans
Tag: Modern API
Endpoint: GET /api/v1/players/{steamId64}/groups
Tag: Modern API
Endpoint: GET /api/v1/players/{steamId64}/history
Tag: Modern API
Endpoint: GET /api/v1/groups/{groupId64}
Tag: Modern API
Endpoint: GET /api/v1/groups/{groupId64}/members
Tag: Modern API
Endpoint: GET /api/v1/groups/{groupId64}/history
Tag: Modern API
Endpoint: GET /api/v1/compare
Tag: Modern API
Endpoint: GET /profiles/{id}
Tag: Legacy Drop-in
Endpoint: GET /id/{customUrl}
Tag: Legacy Drop-in
Steam Web API and XML API drop-in replacement
Returns detailed player data including current profile values and checks.
Maximum time to wait for an update to complete before returning cached data. Note: If an update is triggered (via maxAgeSeconds), a maxWaitSeconds of less than 5 seconds will always be billed even if the update does not complete in time.
Maximum age of the data in seconds. If the data is older, an update will be requested. Must be greater than or equal to your subscription's minimum update interval. Updates are billed an additional token cost; however, if the update does not complete within maxWaitSeconds and you provided at least 5 seconds of wait time, the request cost is reduced to 0.
Player not found
curl 'https://steamidapi.com/api/v1/players/76561197960435530?maxWaitSeconds=30&maxAgeSeconds=null' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"data": {
"personaName": "Robin",
"profileUrl": "https://steamcommunity.com/id/robin/",
"avatar": {
"small": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"medium": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"full": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg"
},
"privacyState": "public",
"onlineState": "offline",
"isLimitedAccount": false,
"bans": {
"communityBanned": false,
"vacBanned": false,
"numberOfVACBans": 0,
"numberOfGameBans": 0,
"economyBan": "none"
},
"friends": {
"current": 150,
"allTime": 200
},
"groups": {
"current": 10,
"allTime": 12
},
"playtime": {
"forever": 500000,
"twoWeeks": 1200
},
"personaNameCount": 5,
"lastChecks": {
"profile": "2026-04-15T12:00:00.000Z",
"bans": "2026-04-15T12:00:00.000Z",
"friends": "2026-04-15T12:00:00.000Z",
"games": "2026-04-15T12:00:00.000Z"
}
},
"links": {
"self": "/api/v1/players/76561197960435530",
"steamCommunity": "https://steamcommunity.com/profiles/76561197960435530",
"steamId": "https://www.steamid.com/profiles/76561197960435530"
}
}Returns player's games and playtime with optional pagination.
Opaque cursor for pagination
Limit the number of records returned
Filter by AppIDs (comma-separated)
Filter from this timestamp (inclusive)
Filter to this timestamp (inclusive)
Include all historical snapshots instead of just the latest
Maximum time to wait for an update to complete before returning cached data. Note: If an update is triggered (via maxAgeSeconds), a maxWaitSeconds of less than 5 seconds will always be billed even if the update does not complete in time.
Maximum age of the data in seconds. If the data is older, an update will be requested. Must be greater than or equal to your subscription's minimum update interval. Updates are billed an additional token cost; however, if the update does not complete within maxWaitSeconds and you provided at least 5 seconds of wait time, the request cost is reduced to 0.
Player not found
curl 'https://steamidapi.com/api/v1/players/76561197960435530/games?cursor=&limit=100&appids=&from=&to=&includeHistory=true&maxWaitSeconds=30&maxAgeSeconds=null' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"data": [
{
"appid": 1,
"timestamp": "2026-05-07T19:07:22.275Z",
"playtimeForever": 1,
"playtimeTwoWeeks": 1
}
],
"links": {
"self": "/api/v1/players/76561197960435530",
"steamCommunity": "https://steamcommunity.com/profiles/76561197960435530",
"steamId": "https://www.steamid.com/profiles/76561197960435530"
},
"pagination": {
"limit": 100,
"cursor": null,
"nextCursor": "eyJpZCI6NDV9",
"nextPage": "/api/v1/players/76561197960435530/friends?cursor=eyJpZCI6NDV9&limit=100"
}
}Returns player's friend list with optional pagination.
Opaque cursor for pagination
Limit the number of records returned
Include historical friends
Maximum time to wait for an update to complete before returning cached data. Note: If an update is triggered (via maxAgeSeconds), a maxWaitSeconds of less than 5 seconds will always be billed even if the update does not complete in time.
Maximum age of the data in seconds. If the data is older, an update will be requested. Must be greater than or equal to your subscription's minimum update interval. Updates are billed an additional token cost; however, if the update does not complete within maxWaitSeconds and you provided at least 5 seconds of wait time, the request cost is reduced to 0.
Player not found
curl 'https://steamidapi.com/api/v1/players/76561197960435530/friends?cursor=&limit=100&includeHistory=true&maxWaitSeconds=30&maxAgeSeconds=null' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"data": [
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"addedAt": null,
"removedAt": null,
"personaName": null,
"avatar": {
"small": "string",
"medium": "string",
"full": "string"
},
"isLimitedAccount": null,
"profileSetup": null,
"memberSince": {
"timestamp": "2003-09-12T23:53:09.000Z",
"isAproximate": false
},
"bans": {
"communityBanned": true,
"vacBanned": true,
"numberOfVACBans": 1,
"numberOfGameBans": 1,
"economyBan": "string",
"lastBanDaysAgo": 1
}
}
],
"links": {
"self": "/api/v1/players/76561197960435530",
"steamCommunity": "https://steamcommunity.com/profiles/76561197960435530",
"steamId": "https://www.steamid.com/profiles/76561197960435530"
},
"pagination": {
"limit": 100,
"cursor": null,
"nextCursor": "eyJpZCI6NDV9",
"nextPage": "/api/v1/players/76561197960435530/friends?cursor=eyJpZCI6NDV9&limit=100"
}
}Returns player's ban status and history with optional pagination.
Opaque cursor for pagination
Limit the number of records returned
Include all historical snapshots instead of just the latest
Filter from this timestamp (inclusive)
Filter to this timestamp (inclusive)
Maximum time to wait for an update to complete before returning cached data. Note: If an update is triggered (via maxAgeSeconds), a maxWaitSeconds of less than 5 seconds will always be billed even if the update does not complete in time.
Maximum age of the data in seconds. If the data is older, an update will be requested. Must be greater than or equal to your subscription's minimum update interval. Updates are billed an additional token cost; however, if the update does not complete within maxWaitSeconds and you provided at least 5 seconds of wait time, the request cost is reduced to 0.
Player not found
curl 'https://steamidapi.com/api/v1/players/76561197960435530/bans?cursor=&limit=100&includeHistory=true&from=&to=&maxWaitSeconds=30&maxAgeSeconds=null' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"data": [
{
"timestamp": "2026-05-07T19:07:22.275Z",
"communityBanned": true,
"vacBanned": true,
"numberOfVACBans": 1,
"numberOfGameBans": 1,
"economyBan": "string",
"lastBanDaysAgo": 1
}
],
"links": {
"self": "/api/v1/players/76561197960435530",
"steamCommunity": "https://steamcommunity.com/profiles/76561197960435530",
"steamId": "https://www.steamid.com/profiles/76561197960435530"
},
"pagination": {
"limit": 100,
"cursor": null,
"nextCursor": "eyJpZCI6NDV9",
"nextPage": "/api/v1/players/76561197960435530/friends?cursor=eyJpZCI6NDV9&limit=100"
}
}Returns player's group memberships and history with optional pagination.
Opaque cursor for pagination
Limit the number of records returned
Include historical group memberships
Maximum time to wait for an update to complete before returning cached data. Note: If an update is triggered (via maxAgeSeconds), a maxWaitSeconds of less than 5 seconds will always be billed even if the update does not complete in time.
Maximum age of the data in seconds. If the data is older, an update will be requested. Must be greater than or equal to your subscription's minimum update interval. Updates are billed an additional token cost; however, if the update does not complete within maxWaitSeconds and you provided at least 5 seconds of wait time, the request cost is reduced to 0.
Player not found
curl 'https://steamidapi.com/api/v1/players/76561197960435530/groups?cursor=&limit=100&includeHistory=true&maxWaitSeconds=30&maxAgeSeconds=null' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"data": [
{
"groupId64": "103582791429521412",
"name": "Valve",
"url": "Valve",
"headline": "Valve",
"summary": "Valve is an entertainment software and technology company.",
"avatar": {
"small": "https://avatars.steamstatic.com/f7743feba79703f7e52b2f63f533a1e12733973d.jpg",
"medium": "https://avatars.steamstatic.com/f7743feba79703f7e52b2f63f533a1e12733973d_medium.jpg",
"full": "https://avatars.steamstatic.com/f7743feba79703f7e52b2f63f533a1e12733973d_full.jpg"
},
"joinedAt": "2020-01-01T00:00:00.000Z",
"leftAt": null,
"links": {
"api": "/api/v1/groups/103582791429521412",
"steamCommunity": "https://steamcommunity.com/groups/Valve"
}
}
],
"links": {
"self": "/api/v1/players/76561197960435530",
"steamCommunity": "https://steamcommunity.com/profiles/76561197960435530",
"steamId": "https://www.steamid.com/profiles/76561197960435530"
},
"pagination": {
"limit": 100,
"cursor": null,
"nextCursor": "eyJpZCI6NDV9",
"nextPage": "/api/v1/players/76561197960435530/friends?cursor=eyJpZCI6NDV9&limit=100"
}
}Returns player's profile data tracking history with optional pagination.
Opaque cursor for pagination
Limit the number of records returned
Filter by profile value keys (comma-separated). Valid keys: personaName, profileUrl, avatar, privacyState, onlineState, isLimitedAccount, headline, inGameServerIP, location, realName, summary, stateMessage, steamRating, profileSetup
Filter history from this timestamp (inclusive)
Filter to this timestamp (inclusive)
Maximum time to wait for an update to complete before returning cached data. Note: If an update is triggered (via maxAgeSeconds), a maxWaitSeconds of less than 5 seconds will always be billed even if the update does not complete in time.
Maximum age of the data in seconds. If the data is older, an update will be requested. Must be greater than or equal to your subscription's minimum update interval. Updates are billed an additional token cost; however, if the update does not complete within maxWaitSeconds and you provided at least 5 seconds of wait time, the request cost is reduced to 0.
Player not found
curl 'https://steamidapi.com/api/v1/players/76561197960435530/history?cursor=&limit=100&keys=personaName%2Cavatar&from=&to=&maxWaitSeconds=30&maxAgeSeconds=null' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"data": [
{
"timestamp": "2026-05-07T19:07:22.275Z",
"key": "personaName",
"value": "string"
}
],
"links": {
"self": "/api/v1/players/76561197960435530",
"steamCommunity": "https://steamcommunity.com/profiles/76561197960435530",
"steamId": "https://www.steamid.com/profiles/76561197960435530"
},
"pagination": {
"limit": 100,
"cursor": null,
"nextCursor": "eyJpZCI6NDV9",
"nextPage": "/api/v1/players/76561197960435530/friends?cursor=eyJpZCI6NDV9&limit=100"
}
}Returns detailed group data including member count and metadata.
Group not found
curl https://steamidapi.com/api/v1/groups/103582791429521412 \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"groupId64": "103582791429521412",
"data": {
"groupId64": "103582791429521412",
"gid": 2,
"name": "Valve",
"url": "Valve",
"headline": "Valve",
"summary": "Valve is an entertainment software and technology company.",
"avatar": {
"small": "https://avatars.steamstatic.com/f7743feba79703f7e52b2f63f533a1e12733973d.jpg",
"medium": "https://avatars.steamstatic.com/f7743feba79703f7e52b2f63f533a1e12733973d_medium.jpg",
"full": "https://avatars.steamstatic.com/f7743feba79703f7e52b2f63f533a1e12733973d_full.jpg"
},
"owner": null,
"officers": [],
"moderators": [],
"members": {
"current": 1200000,
"allTime": 1500000
},
"nameHistoryCount": 1
},
"links": {
"self": "/api/v1/groups/103582791429521412",
"steamCommunity": "https://steamcommunity.com/groups/Valve"
}
}Returns group member list and membership history with optional pagination.
Opaque cursor for pagination
Limit the number of records returned
Include historical group members
Group not found
curl 'https://steamidapi.com/api/v1/groups/103582791429521412/members?cursor=&limit=100&includeHistory=true' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"groupId64": "string",
"data": [
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"joinedAt": null,
"leftAt": null,
"personaName": null,
"avatar": {
"small": "string",
"medium": "string",
"full": "string"
}
}
],
"links": {
"self": "string",
"steamCommunity": "string",
"group": "string"
},
"pagination": {
"limit": 100,
"cursor": null,
"nextCursor": "eyJpZCI6NDV9",
"nextPage": "/api/v1/players/76561197960435530/friends?cursor=eyJpZCI6NDV9&limit=100"
}
}Returns group metadata tracking history with optional pagination.
Opaque cursor for pagination
Limit the number of records returned
Filter by group value keys (comma-separated). Valid keys: group_name, group_url, headline, summary, avatar, owner, officers, moderators
Filter history from this timestamp (inclusive)
Filter history to this timestamp (inclusive)
Group not found
curl 'https://steamidapi.com/api/v1/groups/103582791429521412/history?cursor=&limit=100&keys=&from=&to=' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"groupId64": "string",
"data": [
{
"timestamp": "2026-05-07T19:07:22.275Z",
"key": "group_name",
"value": "string"
}
],
"links": {
"self": "string",
"steamCommunity": "string",
"group": "string"
},
"pagination": {
"limit": 100,
"cursor": null,
"nextCursor": "eyJpZCI6NDV9",
"nextPage": "/api/v1/players/76561197960435530/friends?cursor=eyJpZCI6NDV9&limit=100"
}
}Compares multiple players (min 2, max 5) and finds mutual friends, groups, names, and games.
2 tokens per compared profile. If an update is requested (maxAgeSeconds), an additional cost of 4 tokens per profile per triggered check type applies.
Updates are context-aware: only checks relevant to the requested sections will be triggered and billed. Check types include: profile (always), friends (if requested), and games (if requested).
Comma-separated list of steamId64s (min 2, max 5)
Comma-separated list of sections to include history for (friends, groups, games, names, locations, customurls, realnames, ingameserverips). If true/1, all sections include history. If false/0, no sections include history.
Minimum number of players that must share an item to include it in results. Defaults to 2 (OR logic). Set to the number of players for AND logic.
Comma-separated list of sections to include (friends, groups, names, games, locations, customurls, realnames, ingameserverips). If omitted, all sections are returned.
If true, games with 0 total playtime will be excluded.
Maximum time to wait for an update to complete before returning cached data. Note: If an update is triggered (via maxAgeSeconds), a maxWaitSeconds of less than 5 seconds will always be billed even if the update does not complete in time.
Maximum age of the data in seconds. If the data is older, an update will be requested. Must be greater than or equal to your subscription's minimum update interval. Updates are billed an additional token cost; however, if the update does not complete within maxWaitSeconds and you provided at least 5 seconds of wait time, the request cost is reduced to 0.
curl 'https://steamidapi.com/api/v1/compare?steamIds=76561197960435530%2C76561198000000001&includeHistory=&minSharedCount=2§ions=&excludeZeroPlaytimeGames=false&maxWaitSeconds=30&maxAgeSeconds=null' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"players": [
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"data": {
"personaName": "Robin",
"profileUrl": "https://steamcommunity.com/id/robin/",
"avatar": {
"small": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"medium": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"full": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg"
},
"privacyState": "public",
"onlineState": "offline",
"isLimitedAccount": false,
"realName": "Robin Walker",
"memberSince": {
"timestamp": "2003-09-12T23:53:09.000Z",
"isAproximate": false
},
"bans": {
"communityBanned": false,
"vacBanned": false,
"numberOfVACBans": 0,
"numberOfGameBans": 0,
"economyBan": "none"
},
"friends": {
"current": 150,
"allTime": 200
},
"groups": {
"current": 10,
"allTime": 12
},
"playtime": {
"forever": 500000,
"twoWeeks": 1200
},
"personaNameCount": 5,
"lastChecks": {
"profile": "2026-04-15T12:00:00.000Z",
"bans": "2026-04-15T12:00:00.000Z",
"friends": "2026-04-15T12:00:00.000Z",
"games": "2026-04-15T12:00:00.000Z"
}
}
}
],
"common": {
"friends": [
{
"steamID": {
"steamID64": "76561197960435530",
"steamID3": "[U:1:11]",
"steamID": "STEAM_0:1:5",
"accountID": 11
},
"personaName": null,
"avatar": {
"small": "string",
"medium": "string",
"full": "string"
},
"isLimitedAccount": null,
"profileSetup": null,
"memberSince": {
"timestamp": "2003-09-12T23:53:09.000Z",
"isAproximate": false
},
"bans": {
"communityBanned": true,
"vacBanned": true,
"numberOfVACBans": 1,
"numberOfGameBans": 1,
"economyBan": "string",
"lastBanDaysAgo": 1
},
"relationships": [
{
"steamId64": "string",
"addedAt": null,
"removedAt": null
}
]
}
],
"groups": [
{
"groupId64": "string",
"name": null,
"url": null,
"headline": null,
"summary": null,
"avatar": {
"small": "string",
"medium": "string",
"full": "string"
},
"links": {
"api": "string",
"steamCommunity": "string"
},
"relationships": [
{
"steamId64": "string",
"joinedAt": null,
"leftAt": null
}
]
}
],
"names": [
{
"name": "string",
"relationships": [
{
"steamId64": "string",
"timestamp": "2026-05-07T19:07:22.275Z"
}
]
}
],
"games": [
{
"appid": 1,
"relationships": [
{
"steamId64": "string",
"timestamp": "2026-05-07T19:07:22.275Z",
"playtimeForever": 1,
"playtimeTwoWeeks": 1
}
]
}
],
"locations": [
{
"value": "string",
"relationships": [
{
"steamId64": "string",
"timestamp": "2026-05-07T19:07:22.275Z"
}
]
}
],
"customUrls": [
{
"value": "string",
"relationships": [
{
"steamId64": "string",
"timestamp": "2026-05-07T19:07:22.275Z"
}
]
}
],
"realNames": [
{
"value": "string",
"relationships": [
{
"steamId64": "string",
"timestamp": "2026-05-07T19:07:22.275Z"
}
]
}
],
"inGameServerIPs": [
{
"value": "string",
"relationships": [
{
"steamId64": "string",
"timestamp": "2026-05-07T19:07:22.275Z"
}
]
}
]
}
}Returns basic profile information for a list of 64-bit Steam IDs. The following return fields are not supported: lastlogoff, primaryclanid, personastateflags.
SteamID.com API Key
Comma-separated list of 64 bit Steam IDs
The format of the response
curl 'https://steamidapi.com/ISteamUser/GetPlayerSummaries/v0002?key=&steamids=76561197960435530%2C76561198084134267&format=json'
{
"response": {
"players": [
{
"steamid": "76561197960435530",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "Robin",
"profileurl": "https://steamcommunity.com/id/robin/",
"avatar": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"avatarhash": "fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb",
"personastate": 0,
"realname": "Robin Walker",
"timecreated": 1063407589
}
]
}
}Returns ban status for a list of 64-bit Steam IDs. All standard Steam return fields are supported.
SteamID.com API Key
Comma-separated list of 64 bit Steam IDs
The format of the response
curl 'https://steamidapi.com/ISteamUser/GetPlayerBans/v1?key=&steamids=76561197960435530%2C76561198084134267&format=json'
{
"players": [
{
"SteamId": "76561197960435530",
"CommunityBanned": false,
"VACBanned": false,
"NumberOfVACBans": 0,
"DaysSinceLastBan": 0,
"NumberOfGameBans": 0,
"EconomyBan": "none"
}
]
}Get list of games owned by a player, including playtime. Note: include_played_free_games is not supported and free games are always included if they have playtime data. The following return fields are not supported: has_community_visible_stats.
SteamID.com API Key
The SteamID of the account to fetch games for
Include game name and logo information
The format of the response
curl 'https://steamidapi.com/IPlayerService/GetOwnedGames/v0001?key=&steamid=76561197960435530&include_appinfo=null&format=json'
{
"response": {
"game_count": 1,
"games": [
{
"appid": 440,
"name": "Team Fortress 2",
"playtime_2weeks": 0,
"playtime_forever": 15412,
"img_icon_url": "ef657d33560f54070a9058b56f87d4606138676a",
"img_logo_url": "07304561066063673c2423376288647898858d4a"
}
]
}
}Returns profile data in XML format.
SteamID.com API Key
Profile not found
curl 'https://steamidapi.com/profiles/76561197960435530?key='
<?xml version="1.0" encoding="UTF-8"?>
<profile>
<steamID64>76561197960435530</steamID64>
<steamID>Robin</steamID>
<onlineState>offline</onlineState>
<stateMessage></stateMessage>
<privacyState>public</privacyState>
<visibilityState>3</visibilityState>
<avatarIcon>https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg</avatarIcon>
<avatarMedium>https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg</avatarMedium>
<avatarFull>https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg</avatarFull>
<vacBanned>0</vacBanned>
<tradeBanState>None</tradeBanState>
<isLimitedAccount>0</isLimitedAccount>
</profile>Returns profile data in XML format.
SteamID.com API Key
Profile not found
curl 'https://steamidapi.com/id/gabelogannewell?key='
<?xml version="1.0" encoding="UTF-8"?>
<profile>
<steamID64>76561197960435530</steamID64>
<steamID>Robin</steamID>
<onlineState>offline</onlineState>
<stateMessage></stateMessage>
<privacyState>public</privacyState>
<visibilityState>3</visibilityState>
<avatarIcon>https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg</avatarIcon>
<avatarMedium>https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg</avatarMedium>
<avatarFull>https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg</avatarFull>
<vacBanned>0</vacBanned>
<tradeBanState>None</tradeBanState>
<isLimitedAccount>0</isLimitedAccount>
</profile>