1001Ferramentas
๐ŸŽตGenerators

TikTok User ID Generator (fake)

Generate fake TikTok user IDs (19-digit Snowflake-like). For scraper and analytics tests.


  

TikTok IDs: ByteDance's vertical-video identifier scheme

TikTok is the short-form vertical video network operated by Beijing-based ByteDance. It launched in China in 2016 as Douyin and was rolled out internationally as TikTok in 2017, absorbing Musical.ly in 2018. Every account receives a numeric user ID with roughly 18 to 19 digits โ€” visually similar to a Snowflake but using ByteDance's proprietary layout. Two additional identifiers complete the picture: the SecUID, an opaque alphanumeric token used by the API to defeat enumeration, and the unique_id, the public @handle (4 to 24 characters, lowercase letters, digits, underscore and period).

The three identifiers in practice

  • user_id โ€” numeric, immutable, 18โ€“19 digits. The primary key inside ByteDance systems.
  • sec_uid โ€” opaque base64-ish string used as the safe external reference (e.g. MS4wLjABAAAAโ€ฆ).
  • unique_id โ€” the public @handle shown in URLs; users can change it occasionally subject to TikTok's rules.
  • video_id โ€” another 19-digit numeric ID, attached to each upload and embedded in tiktok.com/@user/video/<id>.

Official API surface

There is no fully open public API. TikTok for Developers exposes a curated set: Login Kit for OAuth sign-in, Display API for read-only access to a user's own videos, and Webhooks for lifecycle events. The TikTok Business API covers paid campaigns, ad accounts and the Spark Ads model. Mass scraping of the consumer web app is explicitly forbidden by the Terms of Service.

Regulation, bans and Project Texas

TikTok has been the subject of repeated regulatory pushback: an attempted ban by the Trump administration in 2020, an outright ban in India in 2020, and the 2025 US legislation forcing ByteDance to divest its US operations. To address national-security concerns, ByteDance built Project Texas, hosting US user data with Oracle in American data centres under independent audit. The internal "For You" recommendation algorithm โ€” driven by engagement signals rather than the social graph โ€” is the platform's signature product and is regularly cited as the reason competitors (YouTube Shorts, Instagram Reels, Snapchat Spotlight) have struggled to catch up.

Creator economy in 2026

The original Creator Fund was wound down in 2023 and replaced by the Creativity Program Beta, which pays creators based on views of videos longer than one minute. Downloaded clips carry a visible watermark; third-party "TikTok downloader" tools strip it, often in breach of the ToS.

FAQ

Is the TikTok API free? The developer APIs (Login Kit, Display API) have a free tier with strict rate limits, but coverage is limited compared to what the consumer app exposes internally.

Can my user_id change? No. The numeric user_id is immutable; only the @handle (unique_id) can be edited, and only within TikTok's rules.

Can I look up a user from the numeric ID alone? Only if the profile is public. Even then, the supported route goes via sec_uid on the web โ€” the numeric ID alone is intentionally not enough to resolve a profile, precisely to slow down enumeration attacks.

How is the TikTok ID different from a Twitter Snowflake? Both are 64-bit numeric IDs with a time-ordered prefix, but ByteDance keeps its exact bit layout, epoch and worker-allocation strategy proprietary, so do not assume the published Twitter formula will decode a TikTok ID.

Related Tools