TikTok Video Date Extractor
Enter a TikTok video's shareable URL to get its exact creation date and time — resolves vm.tiktok.com share links automatically.
Instructions
- Choose a TikTok video. Any public video or photo post works.
- Copy the link. Tap Share on the video and select Copy link. On desktop, the URL in your browser's address bar works too.
- Paste the URL above and click "Run". The video's creation date comes back in a moment.
Example URL: https://www.tiktok.com/@ckenthusiast/video/7252269798455840027
You've got one video's date. Here's the whole account.
TikTok gives you views. We give you patterns.
You're here checking one post at a time. PopTrend charts the full posting timeline of any TikTok account so you can see exactly what's driving reach.
- Full history on the first paste — no 60-day cap
- See the topics & posting times that actually work
- Weekly digest — no dashboard to babysit
When was this TikTok posted?
Every TikTok video URL already contains its own upload time. The long number in the URL — 7252269798455840027 in the example above — is the video ID, and TikTok generates it from a clock reading at the moment the video is created. This tool reads the timestamp back out of that ID and shows you the exact second the video was posted.
TikTok's own interface won't tell you this. The app shows a relative age ("3d ago") or, at best, a date without a time. The precision matters when you're establishing a sequence of events, and "3d ago" is not a fact you can cite.
How does it work?
A TikTok video ID is a Snowflake-style ID: a single large integer whose leading bits encode when it was minted. The top 32 bits hold a Unix timestamp in seconds, so shifting the ID right by 32 bits (BigInt(id) >> BigInt(32)) recovers the upload time directly.
That has a useful consequence — the date is in the URL, not on TikTok's servers. For a full video or photo URL, this tool does no network request at all. It pulls the ID out of the path, decodes it, and formats the result. Nothing is fetched from TikTok, and nothing about the video needs to still exist.
Short share links (vm.tiktok.com/..., tiktok.com/t/...) are the one exception. They don't contain the ID, so the tool follows the redirect once to resolve the real video URL, then decodes the ID from that.
TikTok timestamp converter: what you get
Results come back as a small JSON block above:
| Field | What it is |
|---|---|
dateUTC | The upload time in UTC, e.g. Tue, 07 Jun 2022 20:15:27 UTC |
dateLocal | The same instant in a more readable format |
finalUrl | The full video URL — useful when you pasted a short share link |
id | The numeric video ID decoded from the URL |
One caveat worth stating plainly: dateLocal is not the poster's local time. TikTok doesn't expose the timezone a video was uploaded from, so that field renders the same instant as dateUTC, just formatted differently. Treat dateUTC as the authoritative value. The tool repeats this caveat next to the result.
TikTok video upload time checker: what you can do with it
Whether you're digging into viral trends, ensuring content accuracy, or conducting a serious digital investigation, every TikTok video URL contains more than just the location of the video.
- Viral trend analysis — tracking when a video was posted helps you understand viral patterns and can inform future content strategy.
- Content verification — in the world of viral content, verifying when something was posted helps confirm its relevance and authenticity.
- Legal evidence — sometimes the stakes are high, and knowing the exact date of a video can serve as crucial evidence in a case.
- Academic studies — researchers analyzing social media patterns and viral content benefit from accurate date stamps.
- Journalistic integrity — for journalists, the credibility of reporting on TikTok content hinges on precise dates.
- Creator analytics — for creators who track their viral moments, dates matter for growth analysis.
- OSINT techniques — for open-source intelligence gathering, every detail, including the exact video date, is a clue.
So whether you're a marketer, a researcher, or just curious, knowing precisely when a TikTok video was uploaded can be surprisingly pivotal. Every video's story starts with when.
Frequently asked questions
Can I get the exact time a TikTok video was posted?
Yes. You get the date and the time down to the second, not a rounded day or a relative age.
Can I use this on someone else's TikTok?
Yes. The URL is all that's needed, and any public video's URL works. You don't need to own the video, follow the account, or be logged in — the tool never touches your TikTok account.
Can I find the posting time for deleted TikTok videos?
Yes, as long as you still have the original video URL. Because the timestamp is encoded in the video ID itself and decoding it requires no request to TikTok, a video being deleted, hidden, or set to private doesn't affect the result.
Can I find the posting time for TikTok photo posts?
Yes. Photo posts use the same ID scheme as videos. Paste a /photo/ URL and it decodes exactly the same way.
Does it work with vm.tiktok.com links?
Yes. Short links don't carry the video ID, so the tool follows the redirect to find the full URL first, then decodes the date from it. The resolved link comes back in the finalUrl field.
Why do I get an "invalid URL" error?
Make sure you're using the shareable URL from the TikTok app — it should contain either /video/ or /photo/ followed by a long number, or be a vm.tiktok.com short link. If a short link fails, try opening it in your browser first and pasting the full URL it lands on. If you're still stuck, reach out at service@trevorfox.com.
Is the date the upload time or the time it went public?
It's the moment TikTok minted the video's ID, which happens when the video is created on TikTok's servers. For a normally published video that's effectively the upload time. A video that was drafted and published later can show the earlier moment.
Do you store the URLs I enter?
No. URLs are used only to give you the date for that request.