Guilded Client
  1. Users
Guilded Client
  • Intro
  • Community Libraries
  • Permissions Values
  • Reference
  • Webhooks
  • Chat
    • Get Embed for URL
      GET
    • Get Metadata
      GET
    • Get Channel Messages
      GET
    • Get Pinned Messages
      GET
  • List Items
    • Get List Items
      GET
    • Get List Item Note
      GET
  • Users
    • Modify User
      GET
    • Get Current User Verification
      GET
    • Send Verification Email
      POST
    • Verify Email Address
      GET
    • Get User Owned Steam Apps
      GET
    • Get User
      GET
    • Get User Profile
      GET
    • Get User Profile Posts
      GET
    • Get User Profile Post
      GET
    • Check Email Address
      GET
  • Teams
    • Get Team Presences
      GET
    • Get Team Info
      GET
    • Get Shallow Search Results
      GET
    • Submit Deep Search Query
      GET
    • Check Subdomain
      GET
    • Look up Teams
      GET
    • Check Team Name
      GET
  • Members
    • Get Team Members
    • Detail Team Members
    • Detail Voice Members
    • Sort Member IDs
    • Detail Team Bots
  • Channels
    • Get Team Channels
    • Get Team Channel
    • Get Group Archived Channels
    • Get Thread
    • Get Channel Threads
    • Get Channel Thread Count
    • Get Voice Channel Groups
  • Webhooks
    • Get Channel Webhooks
    • Execute Webhook
  • Guilded Meta
    • Redirect to App
    • Get App QR
  • Tournaments
    • Get Tournaments
    • Get Tournament
    • Get Tournament Info
    • Get Tournament Any Bracket Confirmed
    • Get Tournament from Invite
    • Get Tournament Hash Invites
    • Get Tournament Bracket Matches
    • Get Upcoming Tournaments
    • Get Completed Tournaments
    • Get Featured Tournaments
  • Websocket
    • Websocket
  1. Users

Get User Owned Steam Apps

GET
/sociallink/steam/recent/{userId}
users
Get all apps in a user's linked Steam profile, unsorted

Request

Path Params
userId
string 
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://www.guilded.gg/api/sociallink/steam/recent/'

Responses

🟢200OK
application/json
Body
games
array [object {4}] 
required
A list of Steam apps the user has in their library
appId
integer 
required
The ID of the Steam app
Example:
6880
appName
string 
required
The name of the Steam app
Example:
Just Cause
foreverPlaytime
integer 
deprecated
The user's recorded playtime on the Steam app (always 0)
gameImageUrl
string <uri>
required
A URL to the app icon on Steam's CDN
Example:
http://media.steampowered.com/steamcommunity/public/images/apps/6880/aeaef41cac61d12ef93cf5eddc86859b1f0c73fa.jpg
Example
{
    "games": [
        {
            "appId": 6880,
            "appName": "Just Cause",
            "foreverPlaytime": 0,
            "gameImageUrl": "http://media.steampowered.com/steamcommunity/public/images/apps/6880/aeaef41cac61d12ef93cf5eddc86859b1f0c73fa.jpg"
        }
    ]
}
🟠400userId must be provided This is thrown when an invalid user ID is provided or none at all.
Modified at 2024-06-10 14:16:22
Previous
Verify Email Address
Next
Get User
Built with