Skip to main content

Get Website User

Retrieves information about the specified user.

Available parameters

Include parameters

ParameterDescription
usernameFind a user by username
emailFind user by email. It must be a valid email address.
steamFind user by steam. It can be steamId, steamId3 or steamId64

Example request:

curl "https://api.gamecms.org/v2/websites/user?username=Wohaho" \
-H 'Accept: application/json' \
-H 'Authorization: Bearer your-token' \
-X GET

Or using email:

curl "https://api.gamecms.org/v2/websites/[email protected]" \
-H 'Accept: application/json' \
-H 'Authorization: Bearer your-token' \
-X GET

Or using steam:

curl "https://api.gamecms.org/v2/websites/user?steam=STEAM_0:1:519453468" \
-H 'Accept: application/json' \
-H 'Authorization: Bearer your-token' \
-X GET