-
Notifications
You must be signed in to change notification settings - Fork 18
Resolve Users
Revadike edited this page Jul 5, 2021
·
8 revisions
No known rate limit
Authenticated: optional
Method:
GET
Host:
steamcommunity.com
orcommunity.cloudflare.steamstatic.com
(no auth)Path:
/actions/ajaxresolveusers
Query Parameters:
Name Type Required Description steamids
array Yes Concatenated array of SteamID64's, separated by ,
(max 200)
Name Type Description []steamid string The SteamID64 of the user []accountid number The Steam account number ("W"-part in SteamID3) []persona_name string The player's persona name (display name) []avatar_url string The last part of the player's avatar URL. Repeating 0
's, if none.[]profile_url string []persona_state number []city string []state string []country string []real_name string []is_friend boolean If authenticated, whether this is a steam friend, else false
[]friends_in_common number If authenticated, how many friends in common, else 0
GET https://steamcommunity.com/actions/ajaxresolveusers?steamids=76561198042965266
[
{
"steamid": "76561198042965266",
"accountid": 82699538,
"persona_name": "Revadike",
"avatar_url": "67db6e3a056e16b8389085dc3eae5ec6b12660a4",
"profile_url": "revadike",
"persona_state": 1,
"city": "",
"state": "",
"country": "",
"real_name": "revadike.com",
"is_friend": false,
"friends_in_common": 0
}
]