Skip to content
Revadike edited this page Feb 24, 2022 · 15 revisions

GET /miniprofile/:accountid/json/

Rate limits

No known rate limit

Request

Authenticated: No

Method: GET

Host: steam-chat.com, steamcommunity.com, or community.cloudflare.steamstatic.com

Path: /miniprofile/:accountid/json/

Variables:

Name Type Description
:accountid number The Steam account number ("W"-part in SteamID3)

Query Parameters:

Name Type Required Description
l string No Language
origin string No The origin URL, changes the Access-Control-Allow-Origin header in response

Response

200 OK

Name Type Description
level number TODO
level_class string TODO
avatar_url string TODO
persona_name string persona name (display name)
favorite_badge object TODO
favorite_badge.name string TODO
favorite_badge.xp string TODO
favorite_badge.level number TODO
favorite_badge.description string TODO
favorite_badge.icon string TODO
profile_background object TODO
profile_background.video/webm string TODO
profile_background.video/mp4 string TODO
avatar_frame string TODO

Example

GET https://steam-chat.com/miniprofile/110644573/json/?l=english&origin=https://steam-chat.com/
{
    "level": 104,
    "level_class": "friendPlayerLevel lvl_100 lvl_plus_0",
    "avatar_url": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/09/09a7bb82b3564078dc17c668d8611abd48dedc04_full.jpg",
    "persona_name": "Calamity",
    "favorite_badge": {
        "name": "Years of Service",
        "xp": "400",
        "level": 8,
        "description": "Member since 4 September, 2012.",
        "icon": "https://community.akamai.steamstatic.com/public/images/badges/02_years/steamyears8_80.png"
    },
    "profile_background": {
        "video/webm": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/items/1091500/6dc4ccdc50b58a28d8817c777034382c2ef366ab.webm",
        "video/mp4": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/items/1091500/5b3f6530d9908627a90597f4b7bcd644a8d038fe.mp4"
    },
    "avatar_frame": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/items/1091500/2504dff701df1c304a964370e15f42aecee8e21b.png"
}
Clone this wiki locally