🔍 Find Discord Message Timestamp
Right-click message → Copy ID (Developer Mode required)
Find when any Discord message was sent - Instant message timestamp decoder
Right-click message → Copy ID (Developer Mode required)
Finding when a Discord message was sent is simple with our timestamp finder. Every Discord message has a unique ID (snowflake ID) that contains the exact timestamp of when it was created. By decoding this ID, you can see the precise date and time any message was sent.
Discord uses snowflake IDs for all messages, which are 64-bit integers containing an embedded timestamp. The timestamp is encoded in the first 41 bits of the ID, representing milliseconds since Discord's epoch (January 1, 2015, 00:00:00 UTC).
Step 1: Enable Developer Mode
Step 2: Copy Message ID
Step 3: Decode the Timestamp
Server moderators can verify when messages were sent to investigate incidents and enforce rules accurately.
Track message patterns, peak activity times, and conversation timelines for community insights.
Determine the timeline of events by checking when specific messages were posted in channels.
Record exact timestamps for important announcements, decisions, or conversations.
Developers can decode message IDs to implement time-based features and message sorting.
Provide evidence with exact timestamps when resolving conflicts or misunderstandings.
Discord message IDs are snowflake IDs - a distributed unique identifier format originally created by Twitter. Each 64-bit ID contains three components:
Discord chose snowflake IDs because they're perfect for distributed systems. Benefits include:
The mathematical formula to extract timestamp from Discord message ID:
timestamp_ms = (message_id >> 22) + 1420070400000
Where 1420070400000 is Discord's epoch in Unix milliseconds (January 1, 2015). The >> operator right-shifts the ID by 22 bits to extract the timestamp portion.
Yes, if you have the message ID saved. The timestamp is encoded in the ID itself, so even if the message is deleted, you can still decode when it was originally sent.
No special permissions needed! Any Discord user can enable Developer Mode and copy message IDs from any message they can see.
Yes, timestamps are accurate to the millisecond. They represent the exact moment Discord's servers created the message ID.
Absolutely! Message IDs work the same way in DMs, group chats, and server channels. Just copy the ID and decode it.
You can decode any message sent after Discord launched snowflake IDs on January 1, 2015. Messages before this date don't use snowflake IDs.