Tutorial Β· TikTok

🐍 Python Step-by-step

How to scrape TikTok tops
with Python.

Extract top data from TikTok. Real code, real responses, real production patterns β€” paste it into your project and ship.

Overview

Learn how to scrape TikTok tops using Python. This comprehensive guide will walk you through the entire process, from setup to implementation.

What You'll Learn

  • β€’ Setting up your development environment
  • β€’ Installing the required HTTP client
  • β€’ Authenticating with the ScrapeCreators API
  • β€’ Making requests to TikTok
  • β€’ Handling responses and errors
  • β€’ Best practices for production use

What You'll Get

  • β€’ Access to tops data
  • β€’ JSON formatted responses
  • β€’ Real-time data access
  • β€’ Scalable solution
  • β€’ Error handling patterns
  • β€’ Performance optimization tips

Prerequisites

1. API Key

First, you'll need a ScrapeCreators API key to authenticate your requests.

Sign up at app.scrapecreators.com to get your free API key with 100 requests.

2. Development Environment

Make sure you have the following installed:

  • β€’ Python and its dependencies
  • β€’ A code editor (VS Code, Sublime, etc.)
  • β€’ Basic understanding of API requests
  • β€’ Command line interface access

Step 1: Install HTTP Client

Requests is a simple HTTP library for Python

pip
pip install requests

Step 2: API Implementation

Now let's make a request to the TikTok API using Python. Replace YOUR_API_KEY with your actual API key.

Python
import requests

API_KEY = 'YOUR_API_KEY'

def scrape():
    headers = {
        'x-api-key': API_KEY,
        'Content-Type': 'application/json'
    }

    params = {
        'query': 'funny',
        'publish_time': 'all-time',
        'sort_by': 'relevance',
        'region': 'example_value',
        'cursor': 'example_value'
    }

    try:
        response = requests.get(f'https://api.scrapecreators.com/v1/tiktok/search/top', headers=headers, params=params)
        response.raise_for_status()

        data = response.json()
        print('Response:', data)
        return data
    except requests.exceptions.RequestException as e:
        print('Error:', e)
        return None

# Usage
result = scrape()

Step 3: Testing Your Code

API Parameters

This endpoint accepts the following parameters:

queryRequired(string)

Keyword to search for

Example: funny

publish_timeOptional(select)

Time Frame TikTok was posted

Example: all-time

sort_byOptional(select)

Sort by

Example: relevance

regionOptional(string)

Note, this doesn't filter the tiktoks only in a specfic region, it puts the proxy there. Use it in case you want to scrape posts only available for some country. Use 2 letter country codes like US, GB, FR, etc

cursorOptional(number)

Cursor to get more videos. Get 'cursor' from previous response.

0

Run Your Code

Execute your script to test the API connection. You should see a JSON response with TikTok tops data.

βœ… Success: You should receive a structured JSON response containing the requested data.

Expected Response

Here's an example of the JSON response you'll receive:

Sample Response
{
  "success": true,
  "credits_remaining": 49999301547,
  "items": [
    {
      "id": "7620673421353012494",
      "desc": "#fyp #dog #funny #humor  #blowthisup?   ",
      "content_type": "multi_photo",
      "create_time": "2026-03-24T04:25:45.000Z",
      "desc_language": "un",
      "region": "US",
      "is_top": 0,
      "statistics": {
        "aweme_id": "7620673421353012494",
        "collect_count": 75335,
        "comment_count": 2555,
        "digg_count": 570679,
        "download_count": 1026,
        "forward_count": 0,
        "lose_comment_count": 0,
        "lose_count": 0,
        "play_count": 2674660,
        "repost_count": 0,
        "share_count": 146329,
        "whatsapp_share_count": 430
      },
      "video": {
        "ai_dynamic_cover": {
          "data_size": 0,
          "height": 814,
          "uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
          ],
          "url_prefix": null,
          "width": 640
        },
        "ai_dynamic_cover_bak": {
          "data_size": 0,
          "height": 814,
          "uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
          ],
          "url_prefix": null,
          "width": 640
        },
        "big_thumbs": [],
        "bit_rate": [],
        "bit_rate_audio": [],
        "cdn_url_expired": 0,
        "cla_info": {
          "caption_infos": null,
          "captions_type": 0,
          "creator_edited_caption_id": 0,
          "enable_auto_caption": 0,
          "has_original_audio": 0,
          "hide_original_caption": false,
          "is_author_dubbing_qualified": false,
          "no_caption_reason": 3,
          "no_caption_reason_v2": 3,
          "vertical_positions": null
        },
        "cover": {
          "data_size": 0,
          "height": 814,
          "uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?biz_tag=musically_general.pics_cover&dr=12229&idc=useast8&ps=d5b8ac02&refresh_token=b1c65c7d&s=SEARCH&sc=cover&shcp=0e6dc556&shp=d05b14bd&t=5897f7ec&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?biz_tag=musically_general.pics_cover&dr=12229&idc=useast8&ps=d5b8ac02&refresh_token=2acf3c7d&s=SEARCH&sc=cover&shcp=0e6dc556&shp=d05b14bd&t=5897f7ec&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D"
          ],
          "url_prefix": null,
          "width": 640
        },
        "download_addr": {
          "height": 720,
          "uri": "",
          "url_list": [],
          "url_prefix": null,
          "width": 720
        },
        "duration": 0,
        "dynamic_cover": {
          "data_size": 0,
          "height": 814,
          "uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
          ],
          "url_prefix": null,
          "width": 640
        },
        "has_watermark": false,
        "height": 0,
        "is_bytevc1": 0,
        "is_callback": false,
        "meta": "{\"Loudness\":\"-7.8\",\"LoudnessRange\":\"2\",\"LoudnessRangeEnd\":\"-6.9\",\"LoudnessRangeStart\":\"-8.9\",\"MaximumMomentaryLoudness\":\"-5.8\",\"MaximumShortTermLoudness\":\"-6.6\",\"Peak\":\"1\",\"Version\":\"1\",\"VolumeInfoJson\":\"{\\\"LoudnessRangeStart\\\":-8.9,\\\"MaximumMomentaryLoudness\\\":-5.8,\\\"MaximumShortTermLoudness\\\":-6.6,\\\"Loudness\\\":-7.8,\\\"LoudnessRange\\\":2,\\\"LoudnessRangeEnd\\\":-6.9,\\\"Peak\\\":1,\\\"Version\\\":1}\",\"loudness\":\"-7.8\",\"peak\":\"1\"}",
        "need_set_token": false,
        "origin_cover": {
          "data_size": 0,
          "height": 814,
          "uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
          ],
          "url_prefix": null,
          "width": 640
        },
        "play_addr": {
          "height": 720,
          "uri": "https://v16m.tiktokcdn-us.com/c7621dcf09b9341fd297a5fde52650eb/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
          "url_key": "7110642235061947141",
          "url_list": [
            "https://v16m.tiktokcdn-us.com/c7621dcf09b9341fd297a5fde52650eb/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
            "https://v19.tiktokcdn-us.com/94872e60a5409ebc2062610f9ae5ba1c/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
            "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v09942g40000can16sjc77u15pkmpv2g&line=0&is_play_url=1&source=SEARCH&file_id=5caf815dde7542f4ae67983e5b583a70&item_id=7110642235061947141&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmIwYzkyNDZkMjc2YTc2NDJhOTUxNjRhMGI2Yzc0NzBj&shp=d05b14bd&shcp=-"
          ],
          "url_prefix": null,
          "width": 720
        },
        "ratio": "720p",
        "tags": null,
        "width": 0
      },
      "author": {
        "accept_private_policy": false,
        "account_labels": null,
        "ad_cover_url": null,
        "advance_feature_item_order": null,
        "advanced_feature_info": null,
        "authority_status": 0,
        "avatar_168x168": {
          "height": 720,
          "uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=6a1adba9&x-expires=1776434400&x-signature=RHwVN7IVaYS3wYc93K3Xvt6xHIg%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=93102099&x-expires=1776434400&x-signature=lGDVnfSsrB%2FBaCVxtfNsun3Dt%2B4%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=5ed6090b&x-expires=1776434400&x-signature=d2E%2B4Ce81XTXA8yZA1AcbJoTI4A%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_300x300": {
          "height": 720,
          "uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=59698e3f&x-expires=1776434400&x-signature=IGQFUwoqQ5%2FQs%2BE%2F6IxBe%2Bla%2FMs%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9852293e&x-expires=1776434400&x-signature=c3Z9nii6k9P8xbIss3AHhJow6Jk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=a5068d5c&x-expires=1776434400&x-signature=ilNSB9%2FxyZd%2Fbq2VOkxo9TpYOGE%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_larger": {
          "height": 720,
          "uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=071322d1&x-expires=1776434400&x-signature=n6Y%2FOeq3wWDaJErvVXX2deeZ%2BS8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=980095bc&x-expires=1776434400&x-signature=BQBu6nCU7f3zbLF7qrPQd3qg0HA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=f905de08&x-expires=1776434400&x-signature=%2BMHh49esS0zS9GOntxzisg%2BlQsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_medium": {
          "height": 720,
          "uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=316847ed&x-expires=1776434400&x-signature=7wRGo7gdVGUeqGWYRh037aNRPsQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=181c1e3b&x-expires=1776434400&x-signature=y0b1k4o1Y0cu4kXMK1p%2FdnqwBDE%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=22c89b5d&x-expires=1776434400&x-signature=OT40ejVM6nHje4DakBB%2F7wTA8%2BE%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_thumb": {
          "height": 720,
          "uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.pics_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=17c8dbe7&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=kMEbPxDChItSQ6ipFx2PmdSKpVw%3D",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.pics_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=ea953e76&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=v%2BSVGBheah9Ii3Y0sVZdoGZ5u9c%3D",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_general.pics_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=f834f33a&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=REklHLgaUDx6njVvktEFyGd7vhY%3D"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
        "aweme_count": 0,
        "bold_fields": null,
        "can_message_follow_status_list": [
          2
        ],
        "can_set_geofencing": null,
        "cha_list": null,
        "comment_filter_status": 0,
        "comment_setting": 0,
        "commerce_user_level": 0,
        "cover_url": null,
        "custom_verify": "",
        "cv_level": "",
        "download_prompt_ts": 0,
        "enabled_filter_all_comments": false,
        "enterprise_verify_reason": "",
        "events": null,
        "fake_data_info": {},
        "fb_expire_time": 0,
        "follow_status": 0,
        "follower_count": 1680,
        "follower_status": 0,
        "followers_detail": null,
        "following_count": 504,
        "friends_status": 0,
        "geofencing": null,
        "hide_search": true,
        "homepage_bottom_toast": null,
        "ins_id": "",
        "is_ad_fake": false,
        "is_block": false,
        "is_discipline_member": false,
        "is_mute": 0,
        "is_mute_lives": 0,
        "is_mute_non_story_post": 0,
        "is_mute_story": 0,
        "is_star": false,
        "item_list": null,
        "live_agreement": 0,
        "live_commerce": false,
        "live_verify": 0,
        "mention_status": 1,
        "mutual_relation_avatars": null,
        "name_field": "nickname",
        "need_points": null,
        "need_recommend": 0,
        "nickname": "Charlieedits_3",
        "platform_sync_info": null,
        "prevent_download": false,
        "relative_users": null,
        "reply_with_video_flag": 3,
        "room_id": 0,
        "search_highlight": null,
        "search_user_desc": "idk_kid712",
        "search_user_name": "Charlieedits_3",
        "sec_uid": "MS4wLjABAAAAM0TXLbdfLgi-iJzbjgNBLMX9tg4j4mkEbRbtiXHDu3nwxlfQHUnwDLC4Agi8iL0w",
        "secret": 0,
        "shield_comment_notice": 0,
        "shield_digg_notice": 0,
        "shield_edit_field_info": null,
        "shield_follow_notice": 0,
        "short_id": "0",
        "show_image_bubble": false,
        "special_account": {
          "special_account_list": null
        },
        "special_lock": 1,
        "status": 1,
        "stitch_setting": 1,
        "story_status": 0,
        "total_favorited": 0,
        "type_label": null,
        "uid": "7453893356243780650",
        "unique_id": "idk_kid712",
        "user_canceled": false,
        "user_mode": 1,
        "user_now_pack_info": {},
        "user_period": 0,
        "user_profile_guide": null,
        "user_rate": 1,
        "user_spark_info": {},
        "user_tags": null,
        "verification_type": 0,
        "verify_info": "",
        "video_icon": {
          "height": 720,
          "uri": "",
          "url_list": [],
          "url_prefix": null,
          "width": 720
        },
        "white_cover_url": null,
        "with_commerce_entry": false,
        "with_shop_entry": false
      },
      "images": [
        "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-v1:q70.webp?dr=8793&refresh_token=4f303086&x-expires=1777644000&x-signature=i2s38bIqG87eWf6DIfKDjn5LYMU%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=image"
      ],
      "music": {
        "author": "𝐙",
        "duration": 16,
        "id": 7110642235061947000,
        "title": "original sound - al7a.z",
        "play_url": "https://v16m.tiktokcdn-us.com/c7621dcf09b9341fd297a5fde52650eb/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
        "matched_song": {
          "author": "Soulja Boy Tell'em",
          "id": "6732704090041616385",
          "title": "Crank That (Soulja Boy)"
        }
      },
      "is_eligible_for_commission": false,
      "is_paid_partnership": false,
      "is_ad": false,
      "url": "https://www.tiktok.com/@idk_kid712/photo/7620673421353012494",
      "shop_product_url": null
    },
    {
      "id": "7629303091011079455",
      "desc": "The funny fish fails 🐟 #fyp #foryou #fish #funny #funnyvideos #funnymoments #viral #viralvideo ",
      "content_type": "video",
      "create_time": "2026-04-16T10:32:45.000Z",
      "desc_language": "en",
      "region": "US",
      "is_top": 0,
      "statistics": {
        "aweme_id": "7629303091011079455",
        "collect_count": 3,
        "comment_count": 4,
        "digg_count": 45,
        "download_count": 0,
        "forward_count": 0,
        "lose_comment_count": 0,
        "lose_count": 0,
        "play_count": 1383,
        "repost_count": 0,
        "share_count": 6,
        "whatsapp_share_count": 0
      },
      "video": {
        "CoverTsp": 53.84764192139738,
        "ai_dynamic_cover": {
          "uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH"
          ],
          "url_prefix": null
        },
        "ai_dynamic_cover_bak": {
          "uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH"
          ],
          "url_prefix": null
        },
        "animated_cover": {
          "uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH"
          ],
          "url_prefix": null
        },
        "big_thumbs": [
          {
            "duration": 74.73333,
            "fext": "jpeg",
            "img_num": 75,
            "img_uris": [
              "tos-useast8-p-0068-tx2/ooDLwIHPI0ii7qi5A0BgP5iCxt7eAA0I7SuEIC",
              "tos-useast8-p-0068-tx2/oAIzwiI0A0mILDt0HCqii5PeIAwPnDTglABuC7",
              "tos-useast8-p-0068-tx2/ooTjGIAQQvTFejItQCgPWqLeDwOduIeXTTAQJB"
            ],
            "img_url": "",
            "img_urls": [
              "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/ooDLwIHPI0ii7qi5A0BgP5iCxt7eAA0I7SuEIC~tplv-noop.image?dr=12525&refresh_token=fc0dc8a9&x-expires=1776372832&x-signature=6RiMfJKPG0qas1WhSadlKmD3HKY%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v15044gf0000d7gbi87og65kts6gub3g",
              "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oAIzwiI0A0mILDt0HCqii5PeIAwPnDTglABuC7~tplv-noop.image?dr=12525&refresh_token=cac902b5&x-expires=1776372832&x-signature=xo7kYdV3U1zmVoMwFc2Eu2gJaSw%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v15044gf0000d7gbi87og65kts6gub3g",
              "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/ooTjGIAQQvTFejItQCgPWqLeDwOduIeXTTAQJB~tplv-noop.image?dr=12525&refresh_token=8b3b4cca&x-expires=1776372832&x-signature=40yNqW4VY7jfvboB%2FLh03pc1rdM%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v15044gf0000d7gbi87og65kts6gub3g"
            ],
            "img_x_len": 5,
            "img_x_size": 136,
            "img_y_len": 5,
            "img_y_size": 240,
            "interval": 1,
            "uri": ""
          }
        ],
        "bit_rate": [
          {
            "HDR_bit": "",
            "HDR_type": "",
            "bit_rate": 1834664,
            "dub_infos": null,
            "fid_profile_labels": "{\"srqa3_0_ori\":\"50\",\"srqa3_0_srv1\":\"55\"}",
            "fps": 30,
            "gear_name": "adapt_lowest_1080_1",
            "is_bytevc1": 1,
            "play_addr": {
              "data_size": 17141729,
              "file_cs": "c:0-63270-6c25",
              "file_hash": "f29dca82439366fb0c7600fb9228d64a",
              "height": 1920,
              "uri": "v15044gf0000d7gbi87og65kts6gub3g",
              "url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_1080p_1834664",
              "url_list": [
                "https://v16m.tiktokcdn-us.com/3af5c6ed65c71fb0793518b2c1f7e393/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/osAZAwLeIiPQ7CCQI0iB0XPHEWbsA50wiqgIPI/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1791&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OmY8OGk6PGgzO2ZoNDM7Z0BpamVqdm45cjtlOjMzaTczNEA1NGE2LWBfXjQxYDEwXy4zYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://v19.tiktokcdn-us.com/d83bb115b9d430a09d78fa814d2963e4/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/osAZAwLeIiPQ7CCQI0iB0XPHEWbsA50wiqgIPI/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1791&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OmY8OGk6PGgzO2ZoNDM7Z0BpamVqdm45cjtlOjMzaTczNEA1NGE2LWBfXjQxYDEwXy4zYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=6d18b0314ecc4870aeb9c70f95d97c87&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjM1OGM1MTAzZDQ3MzA2MjQ5MDUwMWZhNTFlZDFmNDEx&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
              ],
              "url_prefix": null,
              "width": 1080
            },
            "quality_type": 2,
            "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 361279}, {\\\"time\\\": 2, \\\"offset\\\": 512255}, {\\\"time\\\": 3, \\\"offset\\\": 729428}, {\\\"time\\\": 4, \\\"offset\\\": 965485}, {\\\"time\\\": 5, \\\"offset\\\": 1170307}, {\\\"time\\\": 10, \\\"offset\\\": 1930277}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.777, \\\"v960\\\": 98.441, \\\"v864\\\": 98.751, \\\"v720\\\": 99.371}, \\\"ori\\\": {\\\"v1080\\\": 93.538, \\\"v960\\\": 94.793, \\\"v864\\\": 95.74, \\\"v720\\\": 96.922}}}\",\"ufq\":\"{\\\"enh\\\":80.847,\\\"playback\\\":{\\\"ori\\\":78.385,\\\"srv1\\\":80.202},\\\"src\\\":77.337,\\\"trans\\\":78.385,\\\"version\\\":\\\"v1.2\\\"}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"11b0345f3bf185ddbe7c48bd7301980f\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96181,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}"
          },
          {
            "HDR_bit": "",
            "HDR_type": "",
            "bit_rate": 1072978,
            "dub_infos": null,
            "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}",
            "fps": 30,
            "gear_name": "adapt_lower_720_1",
            "is_bytevc1": 1,
            "play_addr": {
              "data_size": 10025104,
              "file_cs": "c:0-63281-ad6d",
              "file_hash": "787e583c4db52466674f8af6a477f7d9",
              "height": 1280,
              "uri": "v15044gf0000d7gbi87og65kts6gub3g",
              "url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_720p_1072978",
              "url_list": [
                "https://v16m.tiktokcdn-us.com/314485c5cb1b293a5ca81d8ad787c826/69e14c60/video/tos/useast8/tos-useast8-ve-0068c004-tx2/o80gILAePAI1k57iQBI0wkAH3iiqiCjP7CJEJ0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1047&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=NWU5aDxkOmU5Njg6NzU7O0BpamVqdm45cjtlOjMzaTczNEAzNDQ1Li0zNi0xM2MxY141YSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://v19.tiktokcdn-us.com/4f158fc5b50f2898f1307eec667594b2/69e14c60/video/tos/useast8/tos-useast8-ve-0068c004-tx2/o80gILAePAI1k57iQBI0wkAH3iiqiCjP7CJEJ0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1047&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=NWU5aDxkOmU5Njg6NzU7O0BpamVqdm45cjtlOjMzaTczNEAzNDQ1Li0zNi0xM2MxY141YSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=88a8f244f76543069b670a198e767b62&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjhkMjJkNWI0MzUxNDg0YTI2NmQ4N2EzYjM0MmY0ZmNk&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
              ],
              "url_prefix": null,
              "width": 720
            },
            "quality_type": 14,
            "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 242499}, {\\\"time\\\": 2, \\\"offset\\\": 312140}, {\\\"time\\\": 3, \\\"offset\\\": 435253}, {\\\"time\\\": 4, \\\"offset\\\": 564644}, {\\\"time\\\": 5, \\\"offset\\\": 684070}, {\\\"time\\\": 10, \\\"offset\\\": 1121990}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.225, \\\"v960\\\": 94.241, \\\"v864\\\": 95.747, \\\"v720\\\": 97.304}, \\\"ori\\\": {\\\"v1080\\\": 83.601, \\\"v960\\\": 86.558, \\\"v864\\\": 88.851, \\\"v720\\\": 92.655}}}\",\"ufq\":\"{\\\"enh\\\":80.847,\\\"playback\\\":{\\\"ori\\\":68.798,\\\"srv1\\\":76.872},\\\"src\\\":77.337,\\\"trans\\\":68.798,\\\"version\\\":\\\"v1.2\\\"}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"66e435460d542574ea1dfb41eb3280df\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 92.189, \\\"sr20\\\": 98.188}}\",\"audio_bit_rate\":96181,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}"
          },
          {
            "HDR_bit": "",
            "HDR_type": "",
            "bit_rate": 884477,
            "dub_infos": null,
            "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}",
            "fps": 30,
            "gear_name": "adapt_540_1",
            "is_bytevc1": 1,
            "play_addr": {
              "data_size": 8263898,
              "file_cs": "c:0-63281-6e26",
              "file_hash": "f5fc2e83dd6f52f719ae21c79e344267",
              "height": 1024,
              "uri": "v15044gf0000d7gbi87og65kts6gub3g",
              "url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_540p_884477",
              "url_list": [
                "https://v16m.tiktokcdn-us.com/7db3b7e62b102e6eb579dbaeb2d2f266/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://v19.tiktokcdn-us.com/273d74327cfab340818781f232159cd9/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=2afdbe2b9b3a4f1cba691cdd9a522208&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3YzIzOGE2YzgyZDg2MTc2MmMwMmU0MTRjYjViZTZm&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
              ],
              "url_prefix": null,
              "width": 576
            },
            "quality_type": 28,
            "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 212113}, {\\\"time\\\": 2, \\\"offset\\\": 268539}, {\\\"time\\\": 3, \\\"offset\\\": 369481}, {\\\"time\\\": 4, \\\"offset\\\": 475881}, {\\\"time\\\": 5, \\\"offset\\\": 576081}, {\\\"time\\\": 10, \\\"offset\\\": 952231}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 89.316, \\\"v960\\\": 91.69, \\\"v864\\\": 94.151, \\\"v720\\\": 96.366}, \\\"ori\\\": {\\\"v1080\\\": 78.542, \\\"v960\\\": 82.306, \\\"v864\\\": 84.559, \\\"v720\\\": 88.984}}}\",\"ufq\":\"{\\\"enh\\\":80.847,\\\"playback\\\":{\\\"ori\\\":65.004,\\\"srv1\\\":73.963},\\\"src\\\":77.337,\\\"trans\\\":65.004,\\\"version\\\":\\\"v1.2\\\"}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"71348222804428f6e3d09aa9043e9995\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 88.059, \\\"sr20\\\": 96.217}}\",\"audio_bit_rate\":64139,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBIIAQBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}"
          },
          {
            "HDR_bit": "",
            "HDR_type": "",
            "bit_rate": 668987,
            "dub_infos": null,
            "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}",
            "fps": 30,
            "gear_name": "lowest_540_0",
            "is_bytevc1": 0,
            "play_addr": {
              "data_size": 6250521,
              "file_cs": "c:0-62229-b43b",
              "file_hash": "5d774fa8cdc13daf25a507c7bab72cfa",
              "height": 1024,
              "uri": "v15044gf0000d7gbi87og65kts6gub3g",
              "url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_540p_668987",
              "url_list": [
                "https://v16m.tiktokcdn-us.com/63a07f7cf8202691e68e30d50f4c26b8/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/ocgCRAI2j6QwARGTvLO1esfDcJTIBIXAq8X7Ce/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=653&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=aTg4ZDM1PDY7OTg1ZjhnaUBpamVqdm45cjtlOjMzaTczNEBfLzYyMi02NTAxMS4tXjIxYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://v19.tiktokcdn-us.com/f0eb0bd114d142885021ee18c14b17ee/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/ocgCRAI2j6QwARGTvLO1esfDcJTIBIXAq8X7Ce/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=653&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=aTg4ZDM1PDY7OTg1ZjhnaUBpamVqdm45cjtlOjMzaTczNEBfLzYyMi02NTAxMS4tXjIxYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
                "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4f5da50c12454638839902505a9525bf&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjVkM2E3MzMxMzUzYWI0OTI0OWI1NTU0OTRlMjJjN2Fl&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
              ],
              "url_prefix": null,
              "width": 576
            },
            "quality_type": 25,
            "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 175980}, {\\\"time\\\": 2, \\\"offset\\\": 244417}, {\\\"time\\\": 3, \\\"offset\\\": 325077}, {\\\"time\\\": 4, \\\"offset\\\": 403947}, {\\\"time\\\": 5, \\\"offset\\\": 503005}, {\\\"time\\\": 10, \\\"offset\\\": 780283}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 72.286, \\\"v960\\\": 74.302, \\\"v864\\\": 76.291, \\\"v720\\\": 78.633}, \\\"ori\\\": {\\\"v1080\\\": 59.985, \\\"v960\\\": 64.294, \\\"v864\\\": 67.932, \\\"v720\\\": 73.084}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"25b3faebdda74a9e438e851988a6efcc\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":32094}"
          }
        ],
        "bit_rate_audio": [],
        "cdn_url_expired": 0,
        "cla_info": {
          "caption_infos": null,
          "captions_type": 0,
          "creator_edited_caption_id": 0,
          "enable_auto_caption": 0,
          "has_original_audio": 0,
          "hide_original_caption": false,
          "is_author_dubbing_qualified": false,
          "no_caption_reason": 3,
          "no_caption_reason_v2": 3,
          "vertical_positions": null
        },
        "cover": {
          "data_size": 0,
          "height": 720,
          "uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-x7g4mazu7z-crop-75-heic:500:800.heic?biz_tag=musically_general.video_cover&dr=9616&ftpl=1&idc=useast8&ps=13740610&refresh_token=8b99bd1f&shcp=c1333099&shp=0e6dc556&t=4d5b0474&x-expires=1776369600&x-signature=uLauGG3cxgX4YNkmTe4ajMywFiM%3D",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-x7g4mazu7z-crop-75-heic:500:800.heic?biz_tag=musically_general.video_cover&dr=9616&ftpl=1&idc=useast8&ps=13740610&refresh_token=7ec7ad1a&shcp=c1333099&shp=0e6dc556&t=4d5b0474&x-expires=1776369600&x-signature=Ten2oafvOYdlHCXkSIopPeSn3wg%3D",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-x7g4mazu7z-crop-75-heic:500:800.jpeg?biz_tag=musically_general.video_cover&dr=9616&ftpl=1&idc=useast8&ps=13740610&refresh_token=e8ccd851&shcp=c1333099&shp=0e6dc556&t=4d5b0474&x-expires=1776369600&x-signature=rsrEL03rR6c4w9NSNEZwBhyEXZU%3D"
          ],
          "url_prefix": null,
          "width": 720
        },
        "cover_is_custom": true,
        "did_profile_labels": "",
        "download_addr": {
          "data_size": 16550859,
          "file_cs": "c:0-61940-57f3",
          "height": 720,
          "uri": "v15044gf0000d7gbi87og65kts6gub3g",
          "url_list": [
            "https://v16m.tiktokcdn-us.com/4df00bcded97cf2a2e11b1315e4049fd/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocgxfjCTtwBdJL8JTcXGdAAIqsIeABvkQRfDIX/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1729&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OTdpNzVkOGQ6N2Y4PDVpaUBpamVqdm45cjtlOjMzaTczNEBgXjYyYDIxX2ExXy41YTAwYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://v19.tiktokcdn-us.com/a68f6cee045e5c83f59b64556c4bf27f/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocgxfjCTtwBdJL8JTcXGdAAIqsIeABvkQRfDIX/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1729&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OTdpNzVkOGQ6N2Y4PDVpaUBpamVqdm45cjtlOjMzaTczNEBgXjYyYDIxX2ExXy41YTAwYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v15044gf0000d7gbi87og65kts6gub3g&line=0&watermark=1&logo_name=tiktok_m&source=SEARCH&file_id=3f3fd28915bc44d7ba455ac2549fa4c6&item_id=7629303091011079455&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjVlZjUwZjE2MWVjNzk3ZDhmMWM3OTA1NzBlNWZiNjEz&shp=d05b14bd&shcp=-"
          ],
          "url_prefix": null,
          "width": 720
        },
        "download_no_watermark_addr": {
          "data_size": 17605480,
          "file_cs": "c:0-61940-57f3",
          "file_hash": "feec6206b4edf0ad72daa9296c44e29a",
          "height": 1280,
          "uri": "v15044gf0000d7gbi87og65kts6gub3g",
          "url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_720p_1884299",
          "url_list": [
            "https://v16m.tiktokcdn-us.com/a25f3945bbc418195d7ee845511c5a8a/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://v19.tiktokcdn-us.com/e42caeef3b15591a0483b51afaf154b3/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=b158582184fd42fe83c59fda2b9a781a&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3MmUyNmUwOWQ2NzhlMTFkZTVhMTYxZDQwYWE4MWE1&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
          ],
          "url_prefix": null,
          "width": 720
        },
        "duration": 74746,
        "dynamic_cover": {
          "data_size": 0,
          "height": 720,
          "uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=dynamic_cover",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=dynamic_cover",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=dynamic_cover"
          ],
          "url_prefix": null,
          "width": 720
        },
        "has_watermark": true,
        "height": 1280,
        "is_bytevc1": 0,
        "is_callback": true,
        "is_long_video": 1,
        "meta": "{\"LoudnessRange\":\"11.5\",\"LoudnessRangeEnd\":\"-11.6\",\"LoudnessRangeStart\":\"-23.1\",\"MaximumMomentaryLoudness\":\"-6.3\",\"MaximumShortTermLoudness\":\"-10.3\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Loudness\\\":-14.3,\\\"LoudnessRangeStart\\\":-23.1,\\\"MaximumShortTermLoudness\\\":-10.3,\\\"Metrics\\\":{\\\"RMSStats\\\":{\\\"LRDiff\\\":-0.275,\\\"LTotal\\\":-19.091,\\\"Peak\\\":2.546,\\\"RTotal\\\":-18.816},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.14,\\\"SingingRatio\\\":0.04,\\\"SpeechRatio\\\":0.31},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"Loud\\\":-12.62,\\\"LoudR\\\":12.6,\\\"LoudRE\\\":-10.3,\\\"LoudRS\\\":-22.9,\\\"MaxMomLoud\\\":-6.34,\\\"MaxSTLoud\\\":-10.07}},\\\"Cutoff\\\":{\\\"Spkr200G\\\":0.35,\\\"FCenL\\\":3484.45,\\\"FCenR\\\":3469.69,\\\"Spkr100G\\\":0.14,\\\"Spkr150G\\\":0.26},\\\"Loudness\\\":{\\\"Integrated\\\":-14.335},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.237}},\\\"LoudnessRange\\\":11.5,\\\"LoudnessRangeEnd\\\":-11.6,\\\"MaximumMomentaryLoudness\\\":-6.3,\\\"Peak\\\":1,\\\"Version\\\":2}\",\"bright_ratio_mean\":\"0.1531\",\"brightness_mean\":\"161.6178\",\"diff_overexposure_ratio\":\"0.0943\",\"loudness\":\"-14.3\",\"overexposure_ratio_mean\":\"0.122\",\"peak\":\"1\",\"play_time_prob_dist\":\"[800,0.4674,8423.4496]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1776335561}\",\"sr_score\":\"1.000\",\"std_brightness\":\"28.4121\",\"vq_score\":\"63.66\"}",
        "need_set_token": false,
        "origin_cover": {
          "data_size": 0,
          "height": 720,
          "uri": "tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=92ede139&x-expires=1776434400&x-signature=dIHt%2Be2V16Dce7CuJbqOmJOz5Yo%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=feed_cover",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=216b9294&x-expires=1776434400&x-signature=C40wpBbCh9NVbemCegy9U6IHgvY%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=feed_cover",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej~tplv-dmt-adapt-360p.jpeg?dr=8597&refresh_token=be6a725e&x-expires=1776434400&x-signature=ChhsDBtXgBxP6hprNqXxEQFUnWw%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=feed_cover"
          ],
          "url_prefix": null,
          "width": 720
        },
        "play_addr": {
          "data_size": 17605480,
          "file_cs": "c:0-61940-57f3",
          "file_hash": "feec6206b4edf0ad72daa9296c44e29a",
          "height": 1280,
          "uri": "v15044gf0000d7gbi87og65kts6gub3g",
          "url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_720p_1884299",
          "url_list": [
            "https://v16m.tiktokcdn-us.com/a25f3945bbc418195d7ee845511c5a8a/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://v19.tiktokcdn-us.com/e42caeef3b15591a0483b51afaf154b3/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=b158582184fd42fe83c59fda2b9a781a&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3MmUyNmUwOWQ2NzhlMTFkZTVhMTYxZDQwYWE4MWE1&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
          ],
          "url_prefix": null,
          "width": 720
        },
        "play_addr_bytevc1": {
          "data_size": 8263898,
          "file_cs": "c:0-63281-6e26",
          "file_hash": "f5fc2e83dd6f52f719ae21c79e344267",
          "height": 1024,
          "uri": "v15044gf0000d7gbi87og65kts6gub3g",
          "url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_540p_884477",
          "url_list": [
            "https://v16m.tiktokcdn-us.com/7db3b7e62b102e6eb579dbaeb2d2f266/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://v19.tiktokcdn-us.com/273d74327cfab340818781f232159cd9/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=2afdbe2b9b3a4f1cba691cdd9a522208&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3YzIzOGE2YzgyZDg2MTc2MmMwMmU0MTRjYjViZTZm&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
          ],
          "url_prefix": null,
          "width": 576
        },
        "play_addr_h264": {
          "data_size": 17605480,
          "file_cs": "c:0-61940-57f3",
          "file_hash": "feec6206b4edf0ad72daa9296c44e29a",
          "height": 1280,
          "uri": "v15044gf0000d7gbi87og65kts6gub3g",
          "url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_720p_1884299",
          "url_list": [
            "https://v16m.tiktokcdn-us.com/a25f3945bbc418195d7ee845511c5a8a/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://v19.tiktokcdn-us.com/e42caeef3b15591a0483b51afaf154b3/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
            "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=b158582184fd42fe83c59fda2b9a781a&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3MmUyNmUwOWQ2NzhlMTFkZTVhMTYxZDQwYWE4MWE1&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
          ],
          "url_prefix": null,
          "width": 720
        },
        "ratio": "720p",
        "source_HDR_type": 0,
        "tags": null,
        "vid_profile_labels": "{\"tier3\":\"10002\"}",
        "video_model": "",
        "width": 720
      },
      "author": {
        "accept_private_policy": false,
        "account_labels": null,
        "ad_cover_url": null,
        "advance_feature_item_order": null,
        "advanced_feature_info": null,
        "authority_status": 0,
        "avatar_168x168": {
          "height": 720,
          "uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=f404ce64&x-expires=1776434400&x-signature=bf5r5QBxki30Cuhz0H1kbb7IXNA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=66376428&x-expires=1776434400&x-signature=3nhXmTdmLiXDODoCc0NrtpLfUGA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=d9663fc2&x-expires=1776434400&x-signature=SG9pGXTn4ay9ujcD5TnL%2FGVjX34%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_300x300": {
          "height": 720,
          "uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
          "url_list": [
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=e3166951&x-expires=1776434400&x-signature=GMbn3ZwvcxmfUfynqQjZIQNBnEk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=b3c841ac&x-expires=1776434400&x-signature=fmx8arq6poraDZTueiRdyesnVcI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=600cf80d&x-expires=1776434400&x-signature=dx%2FKxPNcWHe2tfBa72x6n3LLHAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_larger": {
          "height": 720,
          "uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=dd6801b0&x-expires=1776434400&x-signature=ChjXRh8JTJ9AZ8lKJ%2Fgcu38O%2BX4%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=d09f3b3d&x-expires=1776434400&x-signature=Gx1biRZXEbIDa3KexeBYKD%2FDeF8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=bcd429b5&x-expires=1776434400&x-signature=0pN5zdZ%2FL0%2F%2BRKUTyCFu5arAFMI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_medium": {
          "height": 720,
          "uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
          "url_list": [
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=564ab630&x-expires=1776434400&x-signature=%2F%2F8CezO5NzA%2B1euQAdLH8jTO8dc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=993042be&x-expires=1776434400&x-signature=%2BgvEDYSkzkyOgBakZp8rx%2FOrod8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=2a2ccc8d&x-expires=1776434400&x-signature=vMBUx58sXaIqMJ%2Bf5O8Al54xoUk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_thumb": {
          "height": 720,
          "uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
          "url_list": [
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.video_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=d284aec3&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=wzHZlkY%2BTnr1DnjZvMerpgYfhI0%3D",
            "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.video_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=7868be8a&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=KlM%2BUZN6LLAFjOHxMtMe4no0bjU%3D",
            "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_general.video_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=9bff60c6&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=NwJImzuPYjbzpPR8K%2B24LanpjHQ%3D"
          ],
          "url_prefix": null,
          "width": 720
        },
        "avatar_uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
        "aweme_count": 0,
        "bold_fields": null,
        "can_message_follow_status_list": [
          0,
          1,
          2,
          4
        ],
        "can_set_geofencing": null,
        "cha_list": null,
        "comment_filter_status": 0,
        "comment_setting": 0,
        "commerce_user_level": 0,
        "cover_url": null,
        "custom_verify": "",
        "cv_level": "",
        "download_prompt_ts": 0,
        "enabled_filter_all_comments": false,
        "enterprise_verify_reason": "",
        "events": null,
        "fake_data_info": {},
        "fb_expire_time": 0,
        "follow_status": 0,
        "follower_count": 351972,
        "follower_status": 0,
        "followers_detail": null,
        "following_count": 83,
        "friends_status": 0,
        "geofencing": null,
        "hide_search": false,
        "homepage_bottom_toast": null,
        "ins_id": "",
        "is_ad_fake": false,
        "is_block": false,
        "is_discipline_member": false,
        "is_mute": 0,
        "is_mute_lives": 0,
        "is_mute_non_story_post": 0,
        "is_mute_story": 0,
        "is_star": false,
        "item_list": null,
        "live_agreement": 0,
        "live_commerce": false,
        "live_verify": 0,
        "mention_status": 1,
        "mutual_relation_avatars": null,
        "name_field": "nickname",
        "need_points": null,
        "need_recommend": 0,
        "nickname": "Laughtime1986",
        "platform_sync_info": null,
        "prevent_download": false,
        "relative_users": null,
        "reply_with_video_flag": 4,
        "room_id": 0,
        "search_highlight": null,
        "search_user_desc": "laughtime1986",
        "search_user_name": "Laughtime1986",
        "sec_uid": "MS4wLjABAAAA3uwdmZmEhsnR2rbKSHN1yo2kvDY3hCNt6AIGfDAMc9FEPn2yo0S_j9BSdjpG8cRW",
        "secret": 0,
        "shield_comment_notice": 0,
        "shield_digg_notice": 0,
        "shield_edit_field_info": null,
        "shield_follow_notice": 0,
        "short_id": "0",
        "show_image_bubble": false,
        "special_account": {
          "special_account_list": null
        },
        "special_lock": 1,
        "status": 1,
        "stitch_setting": 0,
        "story_status": 0,
        "total_favorited": 0,
        "type_label": null,
        "uid": "7491526739996935214",
        "unique_id": "laughtime1986",
        "user_canceled": false,
        "user_mode": 1,
        "user_now_pack_info": {},
        "user_period": 0,
        "user_profile_guide": null,
        "user_rate": 1,
        "user_spark_info": {},
        "user_tags": null,
        "verification_type": 0,
        "verify_info": "",
        "video_icon": {
          "height": 720,
          "uri": "",
          "url_list": [],
          "url_prefix": null,
          "width": 720
        },
        "white_cover_url": null,
        "with_commerce_entry": false,
        "with_shop_entry": false
      },
      "music": {
        "author": "Laughtime1986",
        "duration": 74,
        "id": 7629303098707676000,
        "title": "original sound - laughtime1986",
        "play_url": "https://v16m.tiktokcdn-us.com/97ae89bc8075850bd77733c977bc94fb/69ea32ca/video/tos/useast8/tos-useast8-v-27dcd7-tx2/osHEBiA0I70QQ5KtMAgJRqiBw8Q4uifF0uBd1n/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=OmVlZzdpO2U8NmY2aDU1N0BpM2trdm45cm1lOjMzaTU8NEAuLTQuYjUzXmExYV5iMF9iYSM1LTNxMmRzaWRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000&shp=d05b14bd&shcp=-",
        "matched_song": {}
      },
      "is_eligible_for_commission": false,
      "is_paid_partnership": false,
      "is_ad": false,
      "url": "https://www.tiktok.com/@laughtime1986/video/7629303091011079455",
      "shop_product_url": null
    }
  ],
  "cursor": 30
}

Verify Response Structure

Check that your response includes the expected fields:

  • βœ“success(boolean)
  • βœ“credits_remaining(number)
  • βœ“items(object)
  • βœ“cursor(number)

Best Practices

1

Error Handling

Implement comprehensive error handling and retry logic for failed requests. Log errors properly for debugging.

2

Caching

Cache responses when possible to reduce API calls and improve performance. Consider data freshness requirements.

3

Security

Never expose your API key in client-side code. Use environment variables and secure key management practices.

Performance Tips

Batch Requests

When scraping multiple tops, consider batching requests to maximize throughput while staying within rate limits.

Async Processing

Use asynchronous processing in Python to handle multiple requests concurrently and improve overall performance.

Common Use Cases

Market Research

Analyze TikTok tops to understand market trends, competitor analysis, and audience insights.

Content Analytics

Track performance metrics, engagement rates, and content trends across TikTok tops.

Lead Generation

Identify potential customers and business opportunities throughTikTok data analysis.

Troubleshooting

Common Errors

401 Unauthorized

Check your API key is correct and properly formatted in the x-api-key header.

402 Payment Required

You ran out of credits and need to buy more.

404 Not Found

The resource might not exist or be private.

500 Server Error

Temporary server issue. Implement retry logic with exponential backoff.

Frequently Asked Questions

How much does it cost to scrape TikTok tops?

ScrapeCreators offers 100 free API calls to get started. After that, pricing starts at $10 for 5k requests with volume discounts available.

Is it legal to scrape TikTok data?

Scraping publicly available data is fair game, and we only collect public data. So anything that you can see in an incognito browser is what we collect.

How fast can I scrape TikTok tops?

There is no rate limit! So you can scrape as fast as you want!

What data format does the API return?

All API responses are returned in JSON format, making it easy to integrate with any programming language or application.

Can I use this with other Python frameworks?

Yes! This tutorial focuses on core Python HTTP concepts that work with any framework. The API calls remain the same regardless of your specific Python setup.

How do I handle large datasets?

For large datasets, implement pagination, use streaming responses where available, and consider storing data in a database for efficient querying.

Related Tutorials

Ready to ship?

Get the API key. Run the code.

100 free API calls. No credit card. Same endpoint, same response shape.

Same endpoint, different language

Pick another stack.