CDN
When you watch a TikTok video, the actual MP4 file is not served from TikTok's main servers — it's served from a CDN edge node that might be 50 km from your house. CDN companies (Cloudflare, Fastly, Akamai, Amazon CloudFront, plus the platforms' own internal CDNs) operate thousands of these edge nodes worldwide, dramatically reducing the latency between you and the content.
For downloaders, the CDN matters because that's where the source video file actually lives. Instagram's web pages might require login to view, but the underlying CDN URL where the MP4 is stored is typically accessible without authentication (because CDN-level auth would be expensive at the scale Instagram operates). Tools like DropZap parse the page (or API response) to find the CDN URL, then fetch the file directly — bypassing the login wall, the watermarking layer, and any other client-side restrictions Instagram's app applies.
CDN-served files are also why downloads are typically very fast: the file is already cached near you, and CDN bandwidth is highly optimized. A 100MB MP4 from TikTok's CDN often arrives in 2-3 seconds, compared to 10-15+ seconds if it had to come from a regional origin server.