SteamID
A SteamID is a unique identifier used to identify a Steam account. It is also used to refer to a user’s Steam Community profile page.
Contents
- 1 Format
- 1.1 As Represented Textually
- 1.2 As Represented in Computer Programs
- 1.3 Universes Available for Steam Accounts
- 1.4 Types of Steam Accounts
- 2.1 Steam Community ID as a Steam ID
Format
As Represented Textually
SteamIDs follow a fairly simple format when represented textually: «STEAM_X:Y:Z,» where X, Y, and Z are integers. In select cases, «STEAM_ID_PENDING» or «UNKNOWN» are used (see the section «Types of Steam Accounts» for more details).
- X represents the «Universe» the steam account belongs to.
- Y is part of the ID number for the account. Y is either 0 or 1.
- Z is the «account number»).
Another commonly used representation, referred to as a «Steam3 ID,» is represented as: «[letter:1:W]«. Many games will use this format for player SteamIDs (e.g., [U:1:1234]) when printed from a status command for example.
As Represented in Computer Programs
When represented internally in computer programs, the X, Y, and Z components (see the section titled «As Represented Textually») are all packed into a 64-bit data structure.
- The lowest bit represents Y.
- The next 31 bits represent the account number.
- The next 20 bits represent the instance of the account. It is usually set to 1 for user accounts.
- The next 4 bits represent the type of account.
- The next 8 bits represent the «Universe» the steam account belongs to.
Universes Available for Steam Accounts
There are 6 universes of Steam accounts.
Number Type 0 Individual / Unspecified 1 Public 2 Beta 3 Internal 4 Dev 5 RC Note: Universes 0 to 3 are common, 4 Dev not exist in all games, 5 RC is removed out from some source files «// no such universe anymore»
Types of Steam Accounts
There are ten known account types for a Steam account, of which 4 can be created today.
Number Letter Type Can Be Used? URL Path (default / custom) SteamID64 Identifier Info 0 I / i Invalid No 1 U Individual Yes profiles / id 0x0110000100000000 // single user account 2 M Multiseat Yes // multiseat (e.g. cybercafe) account 3 G GameServer Yes // game server account 4 A AnonGameServer Yes // anonymous game server account 5 P Pending No // pending 6 C ContentServer Unknown // content server 7 g Clan Yes groups / gid 0x0170000000000000 8 T / L / c Chat Yes 9 P2P SuperSeeder No // Fake SteamID for local PSN account on PS3 or Live account on 360, etc. 10 a AnonUser Yes Users of an «Individual» account are temporarily referred to as having a «Pending» account, which has a textual representation of «STEAM_ID_PENDING» until their account credentials are verified with Steam’s authentication servers, a process usually complete by the time a server is fully connected to. Accounts of the type «Invalid» have a textual representation of «UNKNOWN» and are used for bots and accounts which do not belong to another class.
Multi-user chats use the «T» character. Steam group (clan) chats use the «c» character. Steam lobbies use Chat IDs and use the «L» character.
Steam ID as a Steam Community ID
A Steam ID can be converted to Steam Community ID for use on the Steam Community website.
Let X, Y and Z constants be defined by the SteamID: STEAM_X:Y:Z.
There are 2 methods of conversion:
For 32-bit systems Using the formula W=Z*2+Y, a SteamID can be converted to the following link: http or https://steamcommunity.com/path/[letter:1:W] The account type letter can be found in the table above. The path can be found in the same place after the slash symbol. Example: http://steamcommunity.com/profiles/[U:1:132276035] Example: http://steamcommunity.com/gid/[g:1:4] For 64-bit systems Let V be SteamID64 identifier of the account type (can be found in the table above in hexadecimal format). Using the formula W=Z*2+V+Y, a SteamID can be converted to the following link: http or https://steamcommunity.com/path/W As for the 32-bit method, the path can be found in the table above, again after the slash. Example: http://steamcommunity.com/profiles/76561197960287930
Steam Community ID as a Steam ID
Using the reverse methods, a Community ID can be converted to a regular SteamID. The value of Z can be retrieved by checking parity of the number W: if it’s even, Y is 0, if it’s odd, Y is 1 (shortly, Y is the remainder of division of W by 2, or the result of binary AND operation with number 1).
The SteamID64 (64-bit SteamID) of Steam Community members can be found in several places:
- Players:
- In profile->steamID64 element of profile XML schema (can be opened by appending ?xml=1 to profile URL).
- In the «Add to your friends list» link (not recommended to be used in applications that login with username and password).
Caveat About Cyber Café Accounts
Although it would appear sensible for Valve to put all cybercafé account SteamIDs in their own universe, this has not been done. Instead, cybercafé accounts get SteamIDs in the same universe as user accounts, typically from a large pool of SteamIDs where the unique ID part lies within the range 7000000 and 8000000. There are also non-cybercafé accounts within this range and cybercafé accounts outside of this range.
SteamID Uses
Aside from the obvious elements of identifying (uniquely) an account, its type and the domain (universe) it belongs to, SteamIDs can be used to approximately determine when the user associated with the SteamID first created that Steam account. Lower values of ‘Z’ in the format described above (i.e. the account number) indicate an account made further in the past to one with a higher value. For example, a SteamID like STEAM_0:0:1234 would mean that the user signed up for their Steam account a long time before a user with a SteamID such as STEAM_0:0:12341111.
The value of X is 0 in VALVe’s GoldSrc and Source Orange Box Engine games (such as Counter-Strike and Counter-Strike: Source ), but newer Valve games (such as Left 4 Dead , Alien Swarm , and Counter-Strike: Global Offensive ) have 1 as a value of X. The value of Y is either 0 or 1 and is part of the Account ID as described above. This bit is used to indicate which authentication server was used by that account.
External links
- SteamID.co.uk — Tools to look up players, items, games, friends, groups, and more.
- Legit-Proof.com — Search engine to look up players and teams from all SteamID-based games and more.
- SteamIDFinder.com — Tool to let players quickly look up their SteamID without launching a game.
- Steam ID Finder — A tool that allows looking up IDs (ID 2, 32-bit ID, 64-bit ID) and easily copy each.
- getSteamID — A standalone tool for Windows to look up all SteamIDs found on a local computer which were used in the past by different users.
- SteamID.com — Search engine to lookup competitive Counter-Strike players by their SteamID.
- VACBanned.com — Search engine to lookup the VAC status of a SteamID, and add the banned SteamIDs to a database.
- SteamProfile.co.uk — A tool which generates links to lookup profiles on multipole API sites
Retrieved from «https://developer.valvesoftware.com/w/index.php?title=SteamID&oldid=365020»
- English
- Pages using Lang
Find Your Steam ID — SteamID Finder
Use the Steam ID Finder below to find any Steam ID, including SteamID 64, SteamID2, SteamID3, and your HEX ID. You will also find the profile URL, real name (if set), amount of friends, profile creation date, location (if set), bans, and more.
Find Steam
Understanding Steam IDs: Types and Formats
To truly understand the concept of Steam IDs, it is essential to familiarize yourself with the different types and formats they come in. A few distinct forms or variations of Steam IDs exist: SteamID, SteamID32, SteamID2, SteamID3, SteamID64, Custom URL, and Community ID. These unique identifiers establish connections between your Steam account and games, websites, and various services.
This linkage ensures a smooth gaming experience across multiple platforms.
Each type of Steam ID possesses its own distinct characteristics and advantages, granting users the ability to personalize their Steam ID.
SteamID
A SteamID is a unique number associated with your Steam account. It serves the purpose of distinguishing you from other gamers and provides a crucial identifier required for accessing various services and games that rely on your SteamID.
You can find two different formats for the SteamID: SteamID64 and Steam ID 32. To locate these formats, refer to your account log or use the convenient Steam ID Finder tool above.
Whether you aim to join a new multiplayer game or connect your account to a third-party application, your SteamID acts as the crucial key to unlock these connections.
SteamID32
SteamID32 serves as a 32-bit unique identifier for your Steam account. Although it may be confused with the “32-bit Steam ID,” both names essentially fulfill the same purpose of identifying your account.
This format can easily be converted to the newer Steam IDs, like SteamID3 and SteamID64. All you need is a quick conversion using a handy Steam ID Finder tool, and voila! Your very own SteamID32 will be ready to use for various services and games.
Example of SteamID3: [U:1:72097047]
Example of SteamID2: STEAM_1:1:36048523SteamID64
SteamID64, also referred to as a community ID or friendID, functions as a distinct identifier utilized for recognizing a Steam account. This identification can be derived from either a SteamID or SteamID3 and serves various purposes, including locating a user’s Steam community page and adding friends on the platform.
To retrieve your SteamID64, simply utilize the efficient Steam ID Finder tool provided on this page. Armed with this unique identifier, effortless access to your personal Steam profile awaits, facilitating seamless connections with fellow gaming enthusiasts.
This can also be referred to as a Steam Community ID:
A Community ID serves as a unique identifier for your Steam account. It plays a crucial role in distinguishing your profile on Steam’s community platform. Unlike Custom URLs, Community IDs are permanent and cannot be modified.
There are various ways to locate your Community ID: you can use the Steam ID Finder tool, or you can find it within the Steam application or web browser.
Example of SteamID64: 76561198032362775
Custom URL
A Custom URL in Steam refers to a personalized link that directly leads to your Steam profile. It offers a shorter and more memorable web address, making it easier for you to share and manage.
To create a Custom URL:
- Go to your Steam profile page.
- Click on the “Edit Profile” button.
- Enter a custom URL in the designated field.
This URL is unique and designed specifically for accessing your profile. Its purpose is to facilitate the process of friends and fellow gamers finding you on the platform, enhancing your overall experience.
Example of Custom URL: https://steamcommunity.com/id/example
Utilizing the Steam ID Finder Tool
The Steam ID Finder Tool is an incredibly useful resource. It helps you easily identify and convert your Steam ID by supporting various formats, including Community ID, SteamID, SteamID32, SteamID64, Custom URL, Hex, SteamID2, and SteamID3.
Additionally, this tool provides the convenience of an avatar finder feature.
The Steam ID Finder Tool offers a convenient search bar function, streamlined conversion process, and extensive support for various formats. It serves as a comprehensive solution to fulfill all your Steam ID requirements.
Search Bar Functionality
The Steam ID Finder Tool’s search bar feature makes it effortless for you to find your Steam ID. With a simple input of your Community ID, SteamID, SteamID32, SteamID64, URL, or SteamID3 into the search bar, the tool will promptly provide you with the information required.
Gone are the days of tirelessly scouring through account logs or tediously converting IDs manually. With the incredible Steam ID Finder Tool, all your search troubles vanish in a mere matter of seconds.
Conversion Process
The Steam ID Finder Tool effortlessly converts Steam IDs between different formats. Whether you have a Community ID, SteamID, SteamID32, SteamID64, URL, or SteamID3 that needs conversion, this tool has got you covered. Simply enter the ID or URL into the search bar, and the tool will provide you with all types of Steam IDs so you can find your desired format.
Struggling with manual conversions is a thing of the past. With the Steam ID Finder Tool, the process is now streamlined for you.
Supported Formats

The Steam ID Finder Tool offers compatibility across a wide range of formats. This ensures that regardless of the current state of your Steam ID, you can effortlessly locate and convert it.
With support for various types such as ID 2, 32-bit ID, 64-bit ID, and SteamID3, this versatile tool caters to all your Steam ID conversion needs. Whether you’re seeking to discover your Steam Hex ID, access your Steam community profile, or convert between formats, the useful Steam ID Finder Tool has got all your needs covered.
Locating Your Steam ID via Steam Application and Browser
Apart from the Steam ID Finder Tool, you have alternative methods to locate your Steam ID. These include using the Steam application and web browser. Both approaches are equally effective for identifying your unique Steam ID, providing multiple avenues to access this crucial piece of information.
Now, let me guide you through the step-by-step process of finding your Steam ID. We will cover both methods using the Steam application and web browser.
Steam Application Method
To find your Steam ID using the Steam application, you should:
- Start by opening the application on your computer or mobile device.
- Once opened, navigate to your profile by clicking on your profile picture located in the top right corner.
- From there, you can see your Steam ID at the top left URL bar. It’s the last 17 numbers.
Web Browser Method
To find your Steam ID using a web browser:
- Start by opening your preferred browser and heading to the Steam website.
- Next, log in to your Steam account and click on the username located in the upper-right corner.
- From there, select «View my profile,» and you’ll spot your Steam ID in the URL at the top left corner.
This method provides an equally effective alternative to the Steam application method. It offers you another way to access your unique Steam ID.
Discovering Your Steam Hex ID
The Steam Hex ID, a lesser-known identifier, serves various purposes such as whitelisting and other associated tasks. It is essentially a unique identifier equivalent to the Steam ID 64 but expressed in hexadecimal notation.
In this section, I will guide you through the concept of Steam Hex ID. You’ll come to understand its purpose and discover how to locate it effortlessly with the assistance of a Steam ID Finder tool.
What is Steam Hex ID?
A Steam Hex ID serves as a unique identifier for your Steam account, using hexadecimal format. It functions similarly to your Steam ID 64, but with a different notation. Although not as commonly encountered as other Steam ID formats, the Steam Hex ID fulfills the purpose of linking your account to various services and games while accurately identifying it.
How to Find Your Steam Hex ID:
To find your Steam Hex ID, you have a simple process at your fingertips. One way is to utilize Tradeit.gg’s Steam ID Finder tool, which allows you to easily obtain your Steam Hex ID quickly by simply pasting your profile URL.
Accessing Steam Profiles with Unique Identifiers
Your Steam profile is accessible through unique identifiers like your Community ID, Custom URL, and HTTPS Steamcommunity.com profiles. These identifiers act as gateways to your account, enabling you to manage settings, connect with fellow gamers, and access your gaming library.
Community ID
As mentioned before, your Community ID serves as a unique identifier for your Steam account. It helps distinguish and locate your profile on Steam’s community platform. To access your Steam profile using the Community ID, simply input the ID into the search bar of the Steam ID Finder Tool.
This action will direct you to your Steam profile, granting you access to manage account settings, engage with other users, and explore your gaming library.
Custom URL
Your Custom URL is a personalized link that leads directly to your Steam profile. To access your profile using the Custom URL, simply enter it into the search bar of the Steam ID Finder Tool or type it into your web browser’s address bar.
This will instantly take you to your Steam profile, where you can effortlessly manage account settings, connect with fellow gamers, and explore your gaming library.
Your Steam profile serves as the central hub for all your gaming activities, encompassing a wide range of customizable options that cater to your needs and preferences.
HTTPS Steamcommunity.com Profiles
To ensure the security of your data while accessing your Steam profile, it is recommended to use an HTTPS connection through Steamcommunity.com . This encrypted connection protects against potential hacking and data theft. Simply enter the HTTPS Steamcommunity.com URL into your web browser’s address bar to access your Steam profile securely.
Summary
In conclusion, it is crucial to understand and locate your Steam ID. Your Steam ID grants access to various services on the platform, including connecting with fellow gamers and managing your online gaming presence.
By following the steps outlined in this comprehensive guide or simply using our tool, you will easily find your unique Steam ID in its different formats. Additionally, you can customize and manage your Steam profile according to your preferences.
With this knowledge and the necessary tools, you are now prepared to embark on an exciting journey into the world of Steam gaming and maximize your experience.
Frequently Asked Questions
To enhance your understanding of Steam IDs and their usage, we have curated a comprehensive list of Frequently Asked Questions (FAQs) that address common inquiries and provide illustrative examples.
These FAQs offer concise yet straightforward answers to the most prevalent queries, ensuring a thorough comprehension of Steam IDs and their diverse applications.
What are examples of Steam ID?
In Steam, various formats are used as Steam IDs. These include the 17-digit numerical identifier found at the end of your profile URL, as well as formats like STEAM_0:0:12345678, [U:1:12345678], 76561197960265728, and https://steamcommunity.com/id/example
Can I find a Steam account by username?
To discover a Steam account using a username, follow these steps: Firstly, launch the Steam client or visit the website. Next, navigate to the Community section and locate the Find People field. Lastly, input the desired username or provide a profile link and press Enter.
Is Steam account ID public?
By default, Steam accounts are set to public, but you have the option to adjust their settings and make them private.
However, keep in mind that your Steam ID64 is publicly accessible. It can be requested by third-party services or developers/publishers like Ubisoft and EA.
What is a Steam ID?
In the world of Steam, a Steam ID acts as a one-of-a-kind code that serves to uniquely identify a Steam account. This code is crucial in establishing connections between the account and various games, websites, and third-party applications.
STEAMID I/O lookup and convert your steamID, steamID3, steamID64, customURL and community id
STEAMID I/O: convert steamIDs, steamID64s, steamID3s, customURLs and find Steam Community profiles.
steamIDs
A steamID is a unique identifier used to identify a Steam account. A steamID can be converted to the newer steamID3 and to a steamID64, sometimes referred to as community ID or friendID. With this steamID64, a user’s Steam community page can be found. A customURL is an optional, more personalised identifier to look up a user’s Steam Community page with.
signing in
- show/hide a Steam user’s avatar
- show/hide a Steam user’s location in an embedded OpenStreetMaps frame
- export of list output for use in SourceBans
- enable/disable autofocus on the input form field
- post feedback
Signing in through Steam is entirely safe. Only your community id is passed on to STEAMID I/O, for which a profile will be created. In this profile you can set said options to your liking.
If you no longer wish to keep your profile, you may simply stop using it or request to having it removed.
OpenSearch
If your browser is OpenSearch compliant (Firefox, Chrome and Internet Explorer 7 and above), you can install and use the browser search plugin. Click here to install it.
gratitude
- voogru for posting about the algorithm on the Allied Modders forums
- xPaw for providing a reliable steamID library
- Valve for providing an API
STEAMID I/O is not affiliated with Valve. All trademarks and registered trademarks are the property of their respective owners.
STEAMID I/O lookup and convert your steamID, steamID3, steamID64, customURL and community id
Please enter a steamID, steamID3, steamID64, customURL or complete URL.
Some valid examples:
a steamID STEAM_0:0:11101 a steamID3 [U:1:22202] a steamID3 without brackets U:1:22202 a steamID64 76561197960287930 a customURL gabelogannewell a full URL http://steamcommunity.com/profiles/76561197960287930 a full URL with customURL http://steamcommunity.com/id/gabelogannewell Regular names as input may work and will yield a limited list of profiles, but only if the matching customURL is not taken. customURLs always prevail.
Trade URLs will NOT work.
To convert or look up multiple values, use the dropdown arrow to select extended list.
STEAMID I/O is not affiliated with Valve. All trademarks and registered trademarks are the property of their respective owners.