What is a SteamID64?
A SteamID64 is a numeric identifier assigned to a Steam account. It normally appears as a 17-digit number beginning with 7656119.
A profile URL can expose it directly:
steamcommunity.com/profiles/7656119XXXXXXXXXX
The visible profile name can change. The SteamID64 remains tied to the same account.
That makes it the cleanest key for a Rust player lookup.
Why Rust tools use the numeric ID
Rust communities often contain repeated names, copied names, symbols, and frequent renames. Searching by a visible name can return the wrong person.
The SteamID64 solves that problem because it gives the lookup an exact account.
It is useful for:
- Opening the correct Steam profile
- Checking available Rust player data
- Matching an account across supported tools
- Sharing a stable lookup URL
- Avoiding confusion after a name change
What can I paste?
RustPlayerLookup accepts:
- A raw SteamID64
- A Steam
/profiles/URL - A supported Steam
/id/vanity URL
Trim spaces before validation.
Remove query strings and fragments that do not affect identity.
Reject unrelated domains.
The result page should confirm the account after the lookup data is fetched.
How vanity URLs work
A vanity URL looks like this:
steamcommunity.com/id/example-name
The custom name is easier to remember, but it is not the permanent numeric account ID. The lookup asks the supported source to resolve the vanity name to a SteamID64.
After resolution, the stable lookup route should use the SteamID64:
/lookup/7656119XXXXXXXXXX
This avoids duplicate pages for the same player.
How to find the number manually
If the profile URL already contains /profiles/, copy the 17-digit number after that path.
If the URL contains /id/, paste the full URL into the lookup. The vanity name needs to be resolved first.
For step-by-step instructions, use the guide on how to find a SteamID64 for a Rust player.
What happens after resolution
The SteamID64 identifies the account. The lookup can then request the available profile and Rust related data.
A result may include:
- Current profile name
- Avatar
- Profile visibility
- Account age
- Public Rust playtime
- Available statistics
- Public account signals
- Last checked time
The exact fields depend on privacy and source availability.
Questions people ask
Is SteamID64 the same as a Steam profile name?
No. The profile name is visible and changeable. SteamID64 is the stable numeric account identifier.
Can two accounts share a SteamID64?
No. The identifier belongs to one Steam account.
Why does the tool reject my number?
The number may have the wrong length, contain extra characters, or fail account resolution. Paste the full profile URL if you are unsure.
Can I use a vanity URL?
Yes, when vanity resolution is supported and the Steam profile can be resolved.
