Lookup Discord User Information
Enter a Discord user ID to see account details
💡 Right-click user → Copy ID (Developer Mode required)
Find user information from Discord ID - Instant account details
Enter a Discord user ID to see account details
💡 Right-click user → Copy ID (Developer Mode required)
Discord User ID Lookup is a tool that decodes Discord user IDs to reveal account information. Every Discord user ID is a snowflake ID containing an embedded timestamp that shows exactly when the account was created. Our tool extracts this information instantly, showing account creation date, age, and timestamp details.
Discord uses 64-bit snowflake IDs for all user accounts. These IDs contain three components: a 41-bit timestamp (milliseconds since Discord's epoch), a 10-bit worker ID, and a 12-bit sequence number. By decoding the timestamp portion, we can determine when any Discord account was created.
Step 1: Enable Developer Mode
Step 2: Copy User ID
Step 3: Lookup User Information
Verify account ages to detect alt accounts, ban evaders, or suspicious new accounts in your server.
Check account age before granting permissions or roles. Older accounts are generally more trustworthy.
Identify potential bot accounts by checking if multiple accounts were created at similar times.
Analyze when members joined Discord to understand community demographics and growth patterns.
Verify account history when resolving conflicts or investigating incidents in your community.
Automatically assign veteran roles or permissions based on account age thresholds.
Discord user IDs are 64-bit snowflake identifiers with a specific structure:
The lookup formula to extract account creation date:
timestamp_ms = (user_id >> 22) + 1420070400000
creation_date = new Date(timestamp_ms)
account_age = current_time - creation_date
Account Creation Date: The exact date and time when the Discord account was created, accurate to the millisecond.
Account Age: How long the account has existed, displayed in years, months, and days for easy understanding.
Unix Timestamp: The raw Unix timestamp in milliseconds, useful for programmatic processing or database storage.
ID Validation: Verify that the user ID is valid and within expected ranges for Discord accounts.
Server moderators use user ID lookup to:
Discord user IDs are public information visible to anyone who shares a server with the user. Our lookup tool:
Cannot Find: Usernames, display names, avatars, bio information, server memberships, friend lists, or any other profile data. These require Discord API access.
Can Only Find: Account creation timestamp, which is publicly encoded in the user ID structure itself.
Deleted Accounts: If you have a saved user ID, you can still lookup when the account was created, even if it's been deleted.
Example 1 - Early Discord User:
User ID: 175928847299117063
Created: April 30, 2016
Age: ~8 years
Status: Early Discord adopter
Example 2 - Recent Account:
User ID: 1234567890123456789
Created: March 10, 2024
Age: ~1 year
Status: Relatively new account
No, usernames are not encoded in user IDs. You would need to use Discord's API or be in a shared server to see the username.
Yes! Enable Developer Mode, right-click your own username anywhere in Discord, select Copy ID, and paste it into our tool.
Yes, completely legal. User IDs are public information, and our tool only decodes the timestamp that's already embedded in the ID.
Yes, if you have the user ID saved. The creation date is encoded in the ID itself, so it works even for deleted accounts.
Invalid dates indicate the ID is not a valid Discord user ID. Double-check you copied the correct ID.
No! User IDs are assigned by Discord's servers at account creation and cannot be changed or faked.
Extremely accurate - to the millisecond. The timestamp is directly encoded in the user ID structure.