Skip to content
Revadike edited this page Jul 5, 2021 · 8 revisions

GET /actions/ajaxresolveusers

Rate limits

No known rate limit

Request

Authenticated: optional

Method: GET

Host: steamcommunity.com or community.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)

Response

200 OK

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

Example

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
  }
]
Clone this wiki locally