❄️ Snowflake ID Examples

Real Snowflake IDs from Twitter, Discord, and Instagram with detailed breakdowns

Twitter Snowflake ID Examples

🐦 Popular Tweet Example
1382350606417817604
Creation Date
April 14, 2021
Time (UTC)
15:30:06.657
Worker ID
0
Sequence
0
🐦 First Twitter Snowflake
1
Creation Date
November 4, 2010
Time (UTC)
01:42:54.657
Significance
Twitter Epoch Start
🐦 Recent Tweet (2024)
2024288437327843509
Creation Date
August 15, 2024
Time (UTC)
16:23:42.789
Worker ID
5
Sequence
421

Discord Snowflake ID Examples

💬 Discord User ID Example
175928847299117063
Creation Date
April 30, 2016
Time (UTC)
11:18:25.796
Type
User Account
💬 Discord Message ID Example
1234567890123456789
Creation Date
September 13, 2024
Time (UTC)
12:34:56.789
Type
Message

Instagram Snowflake ID Examples

📸 Instagram Post ID Example
2792188468659568875
Shortcode
CxOWiQNphlr
Creation Date
March 15, 2022
Type
Post/Reel

Understanding Snowflake ID Examples

Snowflake IDs are 64-bit integers used by Twitter, Discord, Instagram, and other platforms to generate unique, time-ordered identifiers. Each example above demonstrates how these IDs encode creation timestamps and other metadata.

Snowflake ID Structure Breakdown

Component Bits Range Purpose
Timestamp 41 bits ~69 years Milliseconds since custom epoch
Worker/Datacenter 10 bits 0-1023 Identifies generating machine
Sequence 12 bits 0-4095 IDs per millisecond per worker

Platform-Specific Epochs

Platform Epoch Date Epoch (ms) Example ID
Twitter November 4, 2010 1288834974657 1382350606417817604
Discord January 1, 2015 1420070400000 175928847299117063
Instagram November 4, 2010 1288834974657 2792188468659568875

Decoding Snowflake ID Examples in Code

JavaScript - Decode Any Snowflake ID
// Universal Snowflake Decoder
function decodeSnowflake(id, epoch) {
  const snowflake = BigInt(id);
  const timestamp = Number((snowflake >> 22n) + BigInt(epoch));
  const workerId = Number((snowflake >> 17n) & 0x1Fn);
  const datacenterId = Number((snowflake >> 12n) & 0x1Fn);
  const sequence = Number(snowflake & 0xFFFn);
  
  return {
    id: id,
    timestamp: timestamp,
    date: new Date(timestamp),
    workerId: workerId,
    datacenterId: datacenterId,
    sequence: sequence
  };
}

// Examples
const TWITTER_EPOCH = 1288834974657;
const DISCORD_EPOCH = 1420070400000;

// Decode Twitter ID
const twitter = decodeSnowflake('1382350606417817604', TWITTER_EPOCH);
console.log('Twitter:', twitter.date.toUTCString());
// Output: Wed, 14 Apr 2021 15:30:06 GMT

// Decode Discord ID
const discord = decodeSnowflake('175928847299117063', DISCORD_EPOCH);
console.log('Discord:', discord.date.toUTCString());
// Output: Sat, 30 Apr 2016 11:18:25 GMT
Python - Decode Snowflake Examples
# Python Snowflake Decoder
from datetime import datetime

def decode_snowflake(snowflake_id, epoch):
    snowflake = int(snowflake_id)
    timestamp = ((snowflake >> 22) + epoch) / 1000
    worker_id = (snowflake >> 17) & 0x1F
    datacenter_id = (snowflake >> 12) & 0x1F
    sequence = snowflake & 0xFFF
    
    return {
        'id': snowflake_id,
        'timestamp': timestamp,
        'date': datetime.fromtimestamp(timestamp),
        'worker_id': worker_id,
        'datacenter_id': datacenter_id,
        'sequence': sequence
    }

# Examples
TWITTER_EPOCH = 1288834974657
DISCORD_EPOCH = 1420070400000

# Decode Twitter ID
twitter = decode_snowflake('1382350606417817604', TWITTER_EPOCH)
print(f"Twitter: {twitter['date']}")
# Output: 2021-04-14 15:30:06.657000

# Decode Discord ID
discord = decode_snowflake('175928847299117063', DISCORD_EPOCH)
print(f"Discord: {discord['date']}")
# Output: 2016-04-30 11:18:25.796000

Common Snowflake ID Patterns

Real-World Use Cases for Snowflake ID Examples

🔍 Forensic Analysis

Use example IDs to verify timestamps in legal cases or investigations

📊 Data Analysis

Analyze posting patterns and activity timelines using ID timestamps

🤖 Bot Development

Test ID generation and decoding logic with known examples

📚 Learning

Understand distributed ID systems through real-world examples

Frequently Asked Questions

Q: Are these real Snowflake IDs?

A: Yes! All examples on this page are real IDs from Twitter, Discord, and Instagram that you can decode and verify.

Q: Can I use these IDs in my application?

A: These are examples for learning. Generate your own IDs using our Snowflake ID generator for production use.

Q: How do I generate my own Snowflake IDs?

A: Use our Twitter Snowflake ID Generator tool to create unique IDs following the same format as these examples.

🔗 Related Snowflake ID Tools

🐦 Twitter Snowflake Decoder 💬 Discord Snowflake Decoder 📸 Instagram Snowflake Decoder

📚 Learn More About Snowflake IDs

How to Decode Tutorial Real ID Examples Snowflake Calculator ID to Timestamp