Last updated
How to Get Discord User ID
Step 1: Enable Developer Mode
Go to Discord Settings → Advanced → Enable "Developer Mode"
Step 2: Copy User ID
Right-click any user → Select "Copy ID"
Step 3: Paste Here
Paste the ID into the checker above
How Discord Account Age Is Calculated
Discord uses Snowflake IDs — 64-bit integers where the top 41 bits encode a timestamp. Discord's epoch is January 1, 2015 at 00:00:00 UTC (1420070400000 ms):
creation_timestamp_ms = (user_id >> 22) + 1420070400000
creation_date = new Date(creation_timestamp_ms)
age_days = Math.floor((Date.now() - creation_timestamp_ms) / 86400000)
Enable Developer Mode in Discord settings, then right-click any user and select 'Copy ID'. The user ID is a long number like 175928847299117063.