How to find your SteamID
SteamID is your unique number in Steam. It is used in punishment systems, server stats, API calls. There are 4 different formats - and it is not always clear which one you need. In this guide - 5 proven ways to find your SteamID in under a minute.
The 4 SteamID formats
The same Steam account has 4 SteamID variants. They are mathematically linked - one format can be computed from any other.
| Format | Example | Where used |
|---|---|---|
| SteamID64 | 76561198000000000 | Modern, primary format. Used in Steam profile URLs, Steam Web API, most services. |
| SteamID32 | STEAM_1:0:19867136 | Legacy format from CS:GO/CS:S. Appears in server logs and in the status command output. |
| SteamID3 | [U:1:39734272] | Newer format used in CS2 logs and punishment system. |
| AccountID | 39734272 | Raw AccountID without prefix - rare technical case. |
On CRAZYPUB, SteamID64 is enough - it is what your profile is linked to.
Method 1: Search on CRAZYPUB
Fastest way - use our player finder. You get all 4 formats at once.
- Open /finder
- Enter Steam nickname or profile URL
- Get a card with SteamID64, SteamID32, SteamID3, AccountID
- Copy the format you need with one click
Works even for private profiles - data comes from Steam Web API.
Method 2: From Steam profile URL
Every Steam account has a URL like steamcommunity.com/profiles/76561198.... The 17-digit number after /profiles/ is your SteamID64.
- Open your profile in Steam client or on steamcommunity.com
- Copy the URL from address bar
- If URL is /id/<nickname> - click «Edit Profile», the URL expands to numeric. Or open via Steam client.
- The number after /profiles/ is your SteamID64
If you have a custom URL, open the page in Steam client - your real numeric URL is shown bottom-right.
Method 3: Via CS2 console
The most «in-game» method - directly in Counter-Strike 2 via developer console.
- Enable console:
Settings → Game → Enable Developer Console = Yes - Join any server. Open console with
~ - Type status - your SteamID3 and nickname appear
In CS2 the format is SteamID3 ([U:1:XXXXXX]). From it you can compute SteamID64 (see method 4) or paste into our finder.
Method 4: Math formula
All 4 formats are linked by a simple formula - you can convert manually:
- AccountID =
SteamID64 - 76561197960265728 - STEAM_1:Y:Z =
Z * 2 + Y - SteamID3 =
[U:1:AccountID] - SteamID64 =
AccountID + 76561197960265728
Doing the math by hand is tedious - it is easier to use our finder, it does all conversions automatically.