How to Scrape TikTok Profile videos with Node.js

Extract profile-videos data from TikTok

⚡️ Using Node.js

Overview

Learn how to scrape TikTok profile videos using Node.js. 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 profile videos 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:

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

Step 1: Install HTTP Client

Axios is a promise-based HTTP client for Node.js

npm
npm install axios

Step 2: API Implementation

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

Node.js
import axios from 'axios';

const API_KEY = 'YOUR_API_KEY';

async function scrape() {
  try {
    const response = await axios.get(`https://api.scrapecreators.com/v3/tiktok/profile-videos?handle=stoolpresidente&user_id=6745191554350760966&amount=20&trim=false`, {
      headers: {
        'x-api-key': API_KEY,
        'Content-Type': 'application/json'
      }
    });

    console.log('Response:', response.data);
    return response.data;
  } catch (error) {
    console.error('Error:', error.response?.data || error.message);
  }
}

// Usage
scrape();

Step 3: Testing Your Code

API Parameters

This endpoint accepts the following parameters:

handleOptional(string)

TikTok username/handle. Can either use handle or user_id

Example: stoolpresidente

user_idOptional(string)

TikTok user id. Use this for faster responses.

Example: 6745191554350760966

amountOptional(number)

Number of videos to fetch (default: 20)

Example: 20

trimOptional(boolean)

Set to true for a trimmed down version of the response

Example: false

Run Your Code

Execute your script to test the API connection. You should see a JSON response with TikTok profile videos 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
[
  {
    "added_sound_music_info": {
      "album": "",
      "allow_offline_music_to_detail_page": false,
      "artists": [],
      "audition_duration": 89,
      "author": "Dave Portnoy",
      "author_deleted": false,
      "author_position": null,
      "avatar_medium": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&nonce=84346&ps=87d6e48a&refresh_token=4e748056c7e77b3132a20d8f35ebc623&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "avatar_thumb": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&nonce=76359&ps=87d6e48a&refresh_token=d4a8690bcf038b814baf3a181da60ac8&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "binded_challenge_id": 0,
      "can_be_stitched": true,
      "can_not_reuse": false,
      "collect_stat": 0,
      "commercial_right_type": 2,
      "cover_large": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&nonce=63827&ps=87d6e48a&refresh_token=baf637709c5425cad637072fb5042300&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "cover_medium": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&nonce=84346&ps=87d6e48a&refresh_token=4e748056c7e77b3132a20d8f35ebc623&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "cover_thumb": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&nonce=76359&ps=87d6e48a&refresh_token=d4a8690bcf038b814baf3a181da60ac8&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "create_time": 1739470692,
      "dmv_auto_show": false,
      "duration": 89,
      "duration_high_precision": {
        "audition_duration_precision": 89.208,
        "duration_precision": 89.208,
        "shoot_duration_precision": 89.208,
        "video_duration_precision": 89.208
      },
      "external_song_info": [],
      "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7338765513101427744,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000cun3envog65vo3il1r70\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
      "has_commerce_right": true,
      "id": 7470969632736710000,
      "id_str": "7470969632736709422",
      "is_audio_url_with_cookie": false,
      "is_author_artist": false,
      "is_commerce_music": true,
      "is_matched_metadata": false,
      "is_original": false,
      "is_original_sound": true,
      "is_pgc": false,
      "is_play_music": false,
      "is_shooting_allow": true,
      "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
      "lyric_short_position": null,
      "meme_song_info": {},
      "mid": "7470969632736709422",
      "multi_bit_rate_play_info": null,
      "mute_share": false,
      "offline_desc": "",
      "owner_handle": "stoolpresidente",
      "owner_id": "6659752019493208069",
      "owner_nickname": "Dave Portnoy",
      "play_url": {
        "height": 720,
        "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7470969676743461675.mp3",
        "url_list": [
          "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7470969676743461675.mp3"
        ],
        "url_prefix": null,
        "width": 720
      },
      "position": null,
      "prevent_download": false,
      "preview_end_time": 0,
      "preview_start_time": 0,
      "recommend_status": 100,
      "search_highlight": null,
      "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
      "shoot_duration": 89,
      "source_platform": 72,
      "status": 1,
      "tag_list": null,
      "title": "original sound - stoolpresidente",
      "tt_to_dsp_song_infos": null,
      "uncert_artists": null,
      "user_count": 0,
      "video_duration": 89
    },
    "aigc_info": {
      "aigc_label_type": 0,
      "created_by_ai": false
    },
    "anchors": null,
    "anchors_extras": "",
    "animated_image_info": {
      "effect": 0,
      "type": 0
    },
    "author": {
      "accept_private_policy": false,
      "account_labels": null,
      "account_region": "",
      "ad_cover_url": null,
      "advance_feature_item_order": null,
      "advanced_feature_info": null,
      "apple_account": 0,
      "authority_status": 0,
      "avatar_168x168": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&nonce=43990&ps=87d6e48a&refresh_token=3615dcca27b938588360dbd9ab9a25f7&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "avatar_300x300": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:300:300:q70.heic?dr=9605&idc=no1a&nonce=91263&ps=87d6e48a&refresh_token=0a516aa8d3264af06762ae49eb6b4809&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "avatar_larger": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&nonce=36078&ps=87d6e48a&refresh_token=6dce5ae523d779b85dab25a1a4304f75&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "avatar_medium": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&nonce=36460&ps=87d6e48a&refresh_token=d25c2ca9ff6d5a2e69242ceb251f957a&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "avatar_meta_info_list": [
        {
          "avatar_category": 1,
          "avatar_meta_info": {
            "avatar_source": 1
          }
        },
        {
          "avatar_category": 6,
          "avatar_meta_info": {}
        }
      ],
      "avatar_thumb": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&nonce=99028&ps=87d6e48a&refresh_token=97e51283a3324ae7a5eaee305dc2b761&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
      "aweme_count": 2038,
      "bind_phone": "",
      "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": [],
      "create_time": 0,
      "custom_verify": "Verified account",
      "cv_level": "",
      "download_prompt_ts": 0,
      "download_setting": 0,
      "duet_setting": 0,
      "enabled_filter_all_comments": false,
      "enterprise_verify_reason": "",
      "events": null,
      "fake_data_info": {},
      "favoriting_count": 149,
      "fb_expire_time": 0,
      "follow_status": 0,
      "follower_count": 4248759,
      "follower_status": 0,
      "followers_detail": null,
      "following_count": 74,
      "friends_status": 0,
      "geofencing": null,
      "google_account": "",
      "has_email": false,
      "has_facebook_token": false,
      "has_insights": false,
      "has_orders": false,
      "has_twitter_token": false,
      "has_youtube_token": false,
      "hide_search": true,
      "homepage_bottom_toast": null,
      "ins_id": "stoolpresidente",
      "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_phone_binded": false,
      "is_star": false,
      "item_list": null,
      "language": "en",
      "live_agreement": 0,
      "live_commerce": false,
      "live_verify": 0,
      "mention_status": 1,
      "mutual_relation_avatars": null,
      "need_points": null,
      "need_recommend": 0,
      "nickname": "Dave Portnoy",
      "original_musician": {
        "digg_count": 0,
        "music_count": 0,
        "music_used_count": 0,
        "new_release_clip_ids": null
      },
      "platform_sync_info": null,
      "prevent_download": false,
      "react_setting": 0,
      "region": "US",
      "relative_users": null,
      "reply_with_video_flag": 4,
      "room_id": 0,
      "search_highlight": null,
      "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
      "secret": 0,
      "share_info": {
        "now_invitation_card_image_urls": null,
        "share_desc": "",
        "share_desc_info": "",
        "share_qrcode_url": {
          "height": 720,
          "uri": "",
          "url_list": [],
          "url_prefix": null,
          "width": 720
        },
        "share_title": "",
        "share_title_myself": "",
        "share_title_other": "",
        "share_url": ""
      },
      "share_qrcode_uri": "",
      "shield_comment_notice": 0,
      "shield_digg_notice": 0,
      "shield_edit_field_info": null,
      "shield_follow_notice": 0,
      "short_id": "0",
      "show_image_bubble": false,
      "signature": "El Presidente/Barstool Sports Founder.",
      "special_account": {
        "special_account_list": null
      },
      "special_lock": 1,
      "status": 1,
      "stitch_setting": 0,
      "total_favorited": 197202693,
      "tw_expire_time": 0,
      "twitter_id": "",
      "twitter_name": "",
      "type_label": null,
      "uid": "6659752019493208069",
      "unique_id": "stoolpresidente",
      "unique_id_modify_time": 1739480405,
      "user_canceled": false,
      "user_mode": 1,
      "user_now_pack_info": {},
      "user_period": 0,
      "user_profile_guide": null,
      "user_rate": 17,
      "user_spark_info": {},
      "user_tags": null,
      "verification_type": 1,
      "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,
      "youtube_channel_id": "UCJRz6HSllkQKmFxaPk8IViw",
      "youtube_channel_title": "BFFs: Dave Portnoy, Josh Richards & Bri Chickenfry",
      "youtube_expire_time": 0
    },
    "author_user_id": 6659752019493208000,
    "aweme_acl": {
      "download_general": {
        "code": 0,
        "mute": false,
        "show_type": 2,
        "transcode": 3
      },
      "download_mask_panel": {
        "code": 0,
        "mute": false,
        "show_type": 2,
        "transcode": 3
      },
      "platform_list": null,
      "press_action_list": null,
      "share_action_list": null,
      "share_general": {
        "code": 0,
        "mute": false,
        "show_type": 2,
        "transcode": 3
      },
      "share_list_status": 0
    },
    "aweme_id": "7470969622276164906",
    "aweme_type": 0,
    "banners": [
      {
        "key": {
          "component_key": "bottom_banner_playlist"
        }
      }
    ],
    "behind_the_song_music_ids": null,
    "behind_the_song_video_music_ids": null,
    "bodydance_score": 0,
    "branded_content_accounts": null,
    "c2pa_info": {
      "aigc_src": "",
      "dedup_err": "",
      "dedup_src": "",
      "first_aigc_src": "",
      "first_src": "",
      "is_capcut": false,
      "is_tiktok": false,
      "last_aigc_src": "",
      "last_src": "",
      "total_audio": 0,
      "total_err": 0,
      "total_img": 0,
      "total_src": 0,
      "total_vid": 1,
      "upload_dur": 89.12236785888672
    },
    "cc_template_info": {
      "author_name": "",
      "clip_count": 0,
      "desc": "",
      "duration_milliseconds": 0,
      "related_music_id": "",
      "template_id": ""
    },
    "cha_list": null,
    "challenge_position": null,
    "cmt_swt": false,
    "collect_stat": 0,
    "comment_config": {
      "comment_panel_show_tab_config": null,
      "emoji_recommend_list": null,
      "long_press_recommend_list": null,
      "preload": {
        "preds": "{\"item_post_comment\":0.0010636124787805788}"
      },
      "quick_comment": {
        "enabled": false
      },
      "quick_comment_emoji_recommend_list": null
    },
    "comment_topbar_info": null,
    "commerce_config_data": null,
    "commerce_info": {
      "adv_promotable": false,
      "auction_ad_invited": false,
      "branded_content_type": 0,
      "organic_log_extra": "{\"req_id\":\"2025021321000493B049F106499F57B023\"}",
      "with_comment_filter_words": false
    },
    "content_desc": "",
    "content_desc_extra": [],
    "content_model": {
      "custom_biz": {
        "aweme_trace": "2025021321000493B049F106499F57B023"
      },
      "standard_biz": {
        "creator_analytics": {
          "creator_analytics_entrance_status": 0
        },
        "e_commerce": {
          "ttec_content_tag": {
            "recommendation_tag_consumer_str": "",
            "recommendation_tag_creator_str": ""
          }
        },
        "local_alliance_info": {
          "alliance_item_label_text": "",
          "alliance_item_label_type": 0
        },
        "tts_voice_info": {
          "tts_voice_attr": "[]",
          "tts_voice_reuse_params": ""
        },
        "vc_filter_info": {
          "vc_filter_attr": "[]"
        }
      }
    },
    "content_original_type": 1,
    "content_size_type": 1,
    "content_type": "video",
    "cover_labels": null,
    "create_time": 1739470683,
    "creation_info": {
      "creation_used_functions": [
        "select_music",
        "high_quality_upload"
      ]
    },
    "desc": "Uncle Jerry and his family may be the nicest people in the world ",
    "desc_language": "en",
    "disable_search_trending_bar": false,
    "distance": "",
    "distribute_type": 2,
    "follow_up_item_id_groups": "",
    "follow_up_publish_from_id": -1,
    "geofencing": null,
    "geofencing_regions": null,
    "green_screen_materials": null,
    "group_id": "7470969622276164906",
    "group_id_list": {
      "GroupdIdList0": [
        7299000945437068000,
        7470969622276165000,
        7296616907627711000,
        7340777994987818000
      ],
      "GroupdIdList1": [
        7470969622276165000,
        7299000945437068000,
        7296616907627711000
      ]
    },
    "has_danmaku": false,
    "has_promote_entry": 1,
    "has_vs_entry": false,
    "have_dashboard": false,
    "hybrid_label": null,
    "image_infos": null,
    "interact_permission": {
      "allow_adding_as_post": {
        "status": 0
      },
      "allow_adding_to_story": 0,
      "allow_create_sticker": {
        "status": 0
      },
      "allow_story_switch_to_post": {},
      "duet": 0,
      "duet_privacy_setting": 0,
      "stitch": 0,
      "stitch_privacy_setting": 0,
      "upvote": 0
    },
    "interaction_stickers": null,
    "is_ads": false,
    "is_description_translatable": true,
    "is_hash_tag": 1,
    "is_nff_or_nr": false,
    "is_on_this_day": 0,
    "is_pgcshow": false,
    "is_preview": 0,
    "is_relieve": false,
    "is_text_sticker_translatable": false,
    "is_title_translatable": false,
    "is_top": 0,
    "is_vr": false,
    "item_comment_settings": 0,
    "item_duet": 0,
    "item_react": 0,
    "item_stitch": 0,
    "label_top": {
      "height": 720,
      "uri": "tiktok-obj/1598708589477025.PNG",
      "url_list": [
        "https://p77-sg.tiktokcdn.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&nonce=9159&refresh_token=73d0df9e577397bf870c70daf0c4f5bc&idc=no1a&ps=933b5bde&shcp=d05b14bd&shp=45126217&t=4d5b0474",
        "https://p77-sg.tiktokcdn.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&nonce=52921&refresh_token=63f54f0dbb7bd0b714124177d56c0bd9&idc=no1a&ps=933b5bde&shcp=d05b14bd&shp=45126217&t=4d5b0474"
      ],
      "url_prefix": null,
      "width": 720
    },
    "label_top_text": null,
    "long_video": null,
    "main_arch_common": "",
    "mask_infos": [],
    "meme_reg_info": {},
    "misc_info": "{}",
    "muf_comment_info_v2": null,
    "music": {
      "album": "",
      "allow_offline_music_to_detail_page": false,
      "artists": [],
      "audition_duration": 89,
      "author": "Dave Portnoy",
      "author_deleted": false,
      "author_position": null,
      "avatar_medium": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&nonce=84346&ps=87d6e48a&refresh_token=4e748056c7e77b3132a20d8f35ebc623&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "avatar_thumb": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&nonce=76359&ps=87d6e48a&refresh_token=d4a8690bcf038b814baf3a181da60ac8&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "binded_challenge_id": 0,
      "can_be_stitched": true,
      "can_not_reuse": false,
      "collect_stat": 0,
      "commercial_right_type": 2,
      "cover_large": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&nonce=63827&ps=87d6e48a&refresh_token=baf637709c5425cad637072fb5042300&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "cover_medium": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&nonce=84346&ps=87d6e48a&refresh_token=4e748056c7e77b3132a20d8f35ebc623&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "cover_thumb": {
        "height": 720,
        "uri": "tos-maliva-avt-0068/7310178711609032710",
        "url_list": [
          "https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&nonce=76359&ps=87d6e48a&refresh_token=d4a8690bcf038b814baf3a181da60ac8&s=PUBLISH&sc=avatar&shcp=132edbea&shp=45126217&t=223449c4"
        ],
        "url_prefix": null,
        "width": 720
      },
      "create_time": 1739470692,
      "dmv_auto_show": false,
      "duration": 89,
      "duration_high_precision": {
        "audition_duration_precision": 89.208,
        "duration_precision": 89.208,
        "shoot_duration_precision": 89.208,
        "video_duration_precision": 89.208
      },
      "external_song_info": [],
      "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7338765513101427744,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000cun3envog65vo3il1r70\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
      "has_commerce_right": true,
      "id": 7470969632736710000,
      "id_str": "7470969632736709422",
      "is_audio_url_with_cookie": false,
      "is_author_artist": false,
      "is_commerce_music": true,
      "is_matched_metadata": false,
      "is_original": false,
      "is_original_sound": true,
      "is_pgc": false,
      "is_play_music": false,
      "is_shooting_allow": true,
      "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
      "lyric_short_position": null,
      "meme_song_info": {},
      "mid": "7470969632736709422",
      "multi_bit_rate_play_info": null,
      "mute_share": false,
      "offline_desc": "",
      "owner_handle": "stoolpresidente",
      "owner_id": "6659752019493208069",
      "owner_nickname": "Dave Portnoy",
      "play_url": {
        "height": 720,
        "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7470969676743461675.mp3",
        "url_list": [
          "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7470969676743461675.mp3"
        ],
        "url_prefix": null,
        "width": 720
      },
      "position": null,
      "prevent_download": false,
      "preview_end_time": 0,
      "preview_start_time": 0,
      "recommend_status": 100,
      "search_highlight": null,
      "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
      "shoot_duration": 89,
      "source_platform": 72,
      "status": 1,
      "tag_list": null,
      "title": "original sound - stoolpresidente",
      "tt_to_dsp_song_infos": null,
      "uncert_artists": null,
      "user_count": 0,
      "video_duration": 89
    },
    "music_begin_time_in_ms": 0,
    "music_end_time_in_ms": 89122,
    "music_selected_from": "original",
    "music_title_style": 1,
    "music_volume": "0.000000",
    "need_trim_step": false,
    "need_vs_entry": false,
    "nickname_position": null,
    "no_selected_music": false,
    "operator_boost_info": null,
    "origin_comment_ids": null,
    "origin_volume": "50.000000",
    "original_client_text": {
      "markup_text": "Uncle Jerry and his family may be the nicest people in the world ",
      "text_extra": null
    },
    "picked_users": [],
    "playlist_blocked": false,
    "playlist_info": {
      "index": 495,
      "item_total": 496,
      "mix_id": "7090570072548461358",
      "name": "Pizza Reviews"
    },
    "poi_re_tag_signal": 0,
    "position": null,
    "prevent_download": false,
    "products_info": null,
    "promote_capcut_toggle": 0,
    "promote_icon_text": "Promote",
    "promote_toast": "",
    "promote_toast_key": "",
    "question_list": null,
    "quick_reply_emojis": [
      "😍",
      "😂",
      "😳"
    ],
    "rate": 12,
    "reference_tts_voice_ids": null,
    "reference_voice_filter_ids": null,
    "region": "US",
    "risk_infos": {
      "content": "",
      "risk_sink": false,
      "type": 0,
      "vote": false,
      "warn": false
    },
    "search_highlight": null,
    "share_info": {
      "bool_persist": 0,
      "now_invitation_card_image_urls": null,
      "share_desc": "Check out Dave Portnoy's video! #TikTok",
      "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
      "share_link_desc": "",
      "share_quote": "",
      "share_signature_desc": "",
      "share_signature_url": "",
      "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
      "share_title_myself": "",
      "share_title_other": "",
      "share_url": "https://www.tiktok.com/@stoolpresidente/video/7470969622276164906?_r=1&u_code=eck59i1bdd63de&preview_pb=0&sharer_language=en&_d=eck57b28c697kk&share_item_id=7470969622276164906&source=h5_m",
      "whatsapp_desc": "Download TikTok and watch more fun videos:"
    },
    "share_url": "https://www.tiktok.com/@stoolpresidente/video/7470969622276164906?_r=1&u_code=eck59i1bdd63de&preview_pb=0&sharer_language=en&_d=eck57b28c697kk&share_item_id=7470969622276164906&source=h5_m",
    "shoot_tab_name": "photo",
    "social_interaction_blob": {
      "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLM="
    },
    "solaria_profile": {
      "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10041\",\"play_time_prob_dist\":\"[800,0.4334,8093.8561]\"}"
    },
    "sort_label": "",
    "standard_component_info": {
      "banner_enabled": true
    },
    "statistics": {
      "aweme_id": "7470969622276164906",
      "collect_count": 276,
      "comment_count": 151,
      "digg_count": 18709,
      "download_count": 9,
      "forward_count": 0,
      "lose_comment_count": 0,
      "lose_count": 0,
      "play_count": 141969,
      "repost_count": 0,
      "share_count": 237,
      "whatsapp_share_count": 3
    },
    "status": {
      "allow_comment": true,
      "allow_share": true,
      "aweme_id": "7470969622276164906",
      "download_status": 0,
      "in_reviewing": false,
      "is_delete": false,
      "is_prohibited": false,
      "private_status": 0,
      "review_result": {
        "review_status": 0
      },
      "reviewed": 0,
      "self_see": false
    },
    "support_danmaku": false,
    "text_extra": [],
    "text_sticker_major_lang": "un",
    "title_language": "un",
    "ttec_suggest_words": {
      "ttec_suggest_words": null
    },
    "tts_voice_ids": null,
    "ttt_product_recall_type": -2,
    "uniqid_position": null,
    "upvote_info": {
      "friends_recall_info": "{}",
      "repost_initiate_score": 0,
      "user_upvoted": false
    },
    "upvote_preload": {
      "need_pull_upvote_info": false
    },
    "used_full_song": false,
    "user_digged": 0,
    "video": {
      "CoverTsp": 45.50499250038512,
      "ai_dynamic_cover": {
        "uri": "tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk",
        "url_list": [
          "https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=71186&refresh_token=2fba30ec341a3a7bfbe2e09d75a07489&x-expires=1739566800&x-signature=ySyYeAHD2YjJgI%2BjPuZflRd1Du4%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480",
          "https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=10680&refresh_token=4ea3c1058a0c896379cddecab293b047&x-expires=1739566800&x-signature=rWJ1lzgx0PSiz6aG5tY%2B3m9J%2BhE%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480"
        ],
        "url_prefix": null
      },
      "ai_dynamic_cover_bak": {
        "uri": "tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk",
        "url_list": [
          "https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=71186&refresh_token=2fba30ec341a3a7bfbe2e09d75a07489&x-expires=1739566800&x-signature=ySyYeAHD2YjJgI%2BjPuZflRd1Du4%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480",
          "https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=10680&refresh_token=4ea3c1058a0c896379cddecab293b047&x-expires=1739566800&x-signature=rWJ1lzgx0PSiz6aG5tY%2B3m9J%2BhE%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480"
        ],
        "url_prefix": null
      },
      "animated_cover": {
        "uri": "tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk",
        "url_list": [
          "https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=71186&refresh_token=2fba30ec341a3a7bfbe2e09d75a07489&x-expires=1739566800&x-signature=ySyYeAHD2YjJgI%2BjPuZflRd1Du4%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480",
          "https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=10680&refresh_token=4ea3c1058a0c896379cddecab293b047&x-expires=1739566800&x-signature=rWJ1lzgx0PSiz6aG5tY%2B3m9J%2BhE%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480"
        ],
        "url_prefix": null
      },
      "big_thumbs": [
        {
          "duration": 89.12237,
          "fext": "jpeg",
          "img_num": 89,
          "img_uris": [
            "tos-maliva-p-0068c799-us/oonaIupEADEGogEiyN6BfF28DDSHMImDRjreWE",
            "tos-maliva-p-0068c799-us/oknri8pNIKjyBoDEIMdumDAwERF2GSfm6geDDE",
            "tos-maliva-p-0068c799-us/oI2jZDriIASMDpEE8DNELoDnHISRg8FenuBmyf",
            "tos-maliva-p-0068c799-us/okIuICD4RNerAEDnDFyrfppmyD8EMESgSoj2BS"
          ],
          "img_url": "",
          "img_urls": [
            "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oonaIupEADEGogEiyN6BfF28DDSHMImDRjreWE~tplv-noop.image?x-expires=1739566894&x-signature=KkkSnobq%2BnRomDQCKlyNSMyXu5I%3D",
            "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oknri8pNIKjyBoDEIMdumDAwERF2GSfm6geDDE~tplv-noop.image?x-expires=1739566894&x-signature=5Qvn2YL1Ef7%2FMznHumcG4B9rM8Q%3D",
            "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oI2jZDriIASMDpEE8DNELoDnHISRg8FenuBmyf~tplv-noop.image?x-expires=1739566894&x-signature=0wd8LDM6M8GHM7OSLcICGeUHq3Q%3D",
            "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/okIuICD4RNerAEDnDFyrfppmyD8EMESgSoj2BS~tplv-noop.image?x-expires=1739566894&x-signature=T7IB5To%2FvKDigdryj7QI24CpEBg%3D"
          ],
          "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": 743393,
          "dub_infos": null,
          "fps": 29,
          "gear_name": "adapt_lower_720_1",
          "is_bytevc1": 1,
          "play_addr": {
            "data_size": 8282425,
            "file_cs": "c:0-74977-d246",
            "file_hash": "935d9392aa06e1ba933758e4c8154807",
            "height": 1280,
            "uri": "v12044gd0000cun31j7og65u0srqh9p0",
            "url_key": "v12044gd0000cun31j7og65u0srqh9p0_bytevc1_720p_743393",
            "url_list": [
              "https://v45.tiktokcdn-eu.com/51ce5a07459115ea14b7e02d8f64ca34/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/ogaEoiFrpIDrM8QADy5gfmEDnuEpR9eDSHpjOB/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1450&bt=725&cs=2&ds=3&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=14&rc=OjM5aWdpZDtmPGc4ZGQ7O0BpMzx0dng5cm02eDMzZzczNEBhLTM0NGAuNV4xYC8yXi1jYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
              "https://v16m.tiktokcdn-eu.com/5ca3df91006500a571fd121d2f79ad7f/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/ogaEoiFrpIDrM8QADy5gfmEDnuEpR9eDSHpjOB/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1450&bt=725&cs=2&ds=3&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=14&rc=OjM5aWdpZDtmPGc4ZGQ7O0BpMzx0dng5cm02eDMzZzczNEBhLTM0NGAuNV4xYC8yXi1jYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
              "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=f808aa5a25cd49ac881acf7d7f6600d7&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjgwNWFkYzExNmRlNmE1MjVmMWVjYjI4MGRlOTc0NzQ4&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
            ],
            "url_prefix": null,
            "width": 720
          },
          "quality_type": 14,
          "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 246857}, {\\\"time\\\": 2, \\\"offset\\\": 335782}, {\\\"time\\\": 3, \\\"offset\\\": 440769}, {\\\"time\\\": 4, \\\"offset\\\": 545662}, {\\\"time\\\": 5, \\\"offset\\\": 634555}, {\\\"time\\\": 10, \\\"offset\\\": 1136256}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 95.709, \\\"v960\\\": 97.525, \\\"v864\\\": 98.041, \\\"v720\\\": 98.907}, \\\"ori\\\": {\\\"v1080\\\": 86.928, \\\"v960\\\": 90.17, \\\"v864\\\": 91.774, \\\"v720\\\": 94.471}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"5e35d865f20af0926360d2ac715972f2\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":62.1,\\\"score_spk\\\":62.1}}\"}"
        },
        {
          "HDR_bit": "",
          "HDR_type": "",
          "bit_rate": 628477,
          "dub_infos": null,
          "fps": 29,
          "gear_name": "adapt_540_1",
          "is_bytevc1": 1,
          "play_addr": {
            "data_size": 7002098,
            "file_cs": "c:0-74977-e4c4",
            "file_hash": "a8c68e5cc4f7fb6be52cd36407780d8a",
            "height": 1024,
            "uri": "v12044gd0000cun31j7og65u0srqh9p0",
            "url_key": "v12044gd0000cun31j7og65u0srqh9p0_bytevc1_540p_628477",
            "url_list": [
              "https://v45.tiktokcdn-eu.com/5615b66337051da8f1424d8115d98a78/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oQSDyGErEWAQElFgnbpAeOjfDD8RBMEruIDFmo/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1226&bt=613&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=11&rc=Ozw3OTo4aTw1NWg8ODVnaEBpMzx0dng5cm02eDMzZzczNEAyXi8yNjA1NTAxLzA1MmMxYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
              "https://v16m.tiktokcdn-eu.com/db7b1f9691741ff5eeab9542f2fc5dcb/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oQSDyGErEWAQElFgnbpAeOjfDD8RBMEruIDFmo/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1226&bt=613&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=11&rc=Ozw3OTo4aTw1NWg8ODVnaEBpMzx0dng5cm02eDMzZzczNEAyXi8yNjA1NTAxLzA1MmMxYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
              "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=4efd5285392e4232898f35975624a958&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjBhZjg4OTMyZTJhN2EyZmI2Y2E0YzhjNWZiYjI0MTQ3&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
            ],
            "url_prefix": null,
            "width": 576
          },
          "quality_type": 28,
          "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 216542}, {\\\"time\\\": 2, \\\"offset\\\": 288160}, {\\\"time\\\": 3, \\\"offset\\\": 374356}, {\\\"time\\\": 4, \\\"offset\\\": 455924}, {\\\"time\\\": 5, \\\"offset\\\": 525689}, {\\\"time\\\": 10, \\\"offset\\\": 931319}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.791, \\\"v960\\\": 95.716, \\\"v864\\\": 96.289, \\\"v720\\\": 96.952}, \\\"ori\\\": {\\\"v1080\\\": 82.465, \\\"v960\\\": 85.323, \\\"v864\\\": 88.597, \\\"v720\\\": 92.204}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"78bf550463b1b364653d8f9bf1f9540e\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":62.1,\\\"score_spk\\\":62.1}}\"}"
        },
        {
          "HDR_bit": "",
          "HDR_type": "",
          "bit_rate": 516578,
          "dub_infos": null,
          "fps": 29,
          "gear_name": "lower_540_1",
          "is_bytevc1": 1,
          "play_addr": {
            "data_size": 5755393,
            "file_cs": "c:0-75042-51d0",
            "file_hash": "26f5217250049c9c94d1af80ad56dd5a",
            "height": 1024,
            "uri": "v12044gd0000cun31j7og65u0srqh9p0",
            "url_key": "v12044gd0000cun31j7og65u0srqh9p0_bytevc1_540p_516578",
            "url_list": [
              "https://v45.tiktokcdn-eu.com/10bbd831dc3d4e477ea0fe359137e4e8/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/o0DmQRBnDgfI2SRkKEkgfgTAuMUDrF8DjSRO9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1008&bt=504&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=4&rc=ODo4aWY5ODY4ZWg2NGhnM0BpMzx0dng5cm02eDMzZzczNEBiYjMxMC5hXy8xXy0xMDMyYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
              "https://v16m.tiktokcdn-eu.com/ef80a80f2d8995b32d84478a4b312ab5/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/o0DmQRBnDgfI2SRkKEkgfgTAuMUDrF8DjSRO9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1008&bt=504&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=4&rc=ODo4aWY5ODY4ZWg2NGhnM0BpMzx0dng5cm02eDMzZzczNEBiYjMxMC5hXy8xXy0xMDMyYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
              "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=506d3e4103be4b25b3d5163c4f65e7e5&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM4ZGVmNTY5YTU5ZjViM2JlOTlmYzA0ZjhkNGM1YmU5&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
            ],
            "url_prefix": null,
            "width": 576
          },
          "quality_type": 24,
          "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 191224}, {\\\"time\\\": 2, \\\"offset\\\": 277072}, {\\\"time\\\": 3, \\\"offset\\\": 352969}, {\\\"time\\\": 4, \\\"offset\\\": 389583}, {\\\"time\\\": 5, \\\"offset\\\": 467683}, {\\\"time\\\": 10, \\\"offset\\\": 854548}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 89.458, \\\"v960\\\": 92.145, \\\"v864\\\": 93.452, \\\"v720\\\": 96.06}, \\\"ori\\\": {\\\"v1080\\\": 77.639, \\\"v960\\\": 81.302, \\\"v864\\\": 84.686, \\\"v720\\\": 88.25}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"c9c1626bc6698cf78886352a58e091d0\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":62.1,\\\"score_spk\\\":62.1}}\"}"
        },
        {
          "HDR_bit": "",
          "HDR_type": "",
          "bit_rate": 380991,
          "dub_infos": null,
          "fps": 29,
          "gear_name": "lowest_540_1",
          "is_bytevc1": 1,
          "play_addr": {
            "data_size": 4244774,
            "file_cs": "c:0-75042-cb36",
            "file_hash": "567693a92079da96bbe1afdb99e1943f",
            "height": 1024,
            "uri": "v12044gd0000cun31j7og65u0srqh9p0",
            "url_key": "v12044gd0000cun31j7og65u0srqh9p0_bytevc1_540p_380991",
            "url_list": [
              "https://v45.tiktokcdn-eu.com/b113fb05c356fd94fafa7c08750dfce9/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/o4DDugfDQepjnFEEcl8BAMSyErEDOImgRoGDmn/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=744&bt=372&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=5&rc=OzxoZzo3ZWYzZ2dnZmY5N0BpMzx0dng5cm02eDMzZzczNEBeMV4uMWBfNmIxMjMuMGJgYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
              "https://v16m.tiktokcdn-eu.com/f577498df9fa46b82f7bccd1024efe04/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/o4DDugfDQepjnFEEcl8BAMSyErEDOImgRoGDmn/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=744&bt=372&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=5&rc=OzxoZzo3ZWYzZ2dnZmY5N0BpMzx0dng5cm02eDMzZzczNEBeMV4uMWBfNmIxMjMuMGJgYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
              "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=c4e63c1c6d5d4de09cbbc4471dae49a8&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmI1NWQ5MDFmNTljMjg2M2FjMWUwNGQ5NzMwYmFjY2Y3&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
            ],
            "url_prefix": null,
            "width": 576
          },
          "quality_type": 25,
          "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 166398}, {\\\"time\\\": 2, \\\"offset\\\": 238785}, {\\\"time\\\": 3, \\\"offset\\\": 300793}, {\\\"time\\\": 4, \\\"offset\\\": 328788}, {\\\"time\\\": 5, \\\"offset\\\": 382584}, {\\\"time\\\": 10, \\\"offset\\\": 658694}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 83.157, \\\"v960\\\": 86.512, \\\"v864\\\": 88.417, \\\"v720\\\": 91.598}, \\\"ori\\\": {\\\"v1080\\\": 71.851, \\\"v960\\\": 75.718, \\\"v864\\\": 78.977, \\\"v720\\\": 83.635}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"269447d6596ef028136ff1205583e26d\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":62.1,\\\"score_spk\\\":62.1}}\"}"
        }
      ],
      "bit_rate_audio": [],
      "cdn_url_expired": 0,
      "cla_info": {
        "caption_infos": [
          {
            "caption_format": "webvtt",
            "caption_length": 1482,
            "cla_subtitle_id": 7470969978385321000,
            "complaint_id": 7470969978385321000,
            "expire": 1742072494,
            "is_auto_generated": true,
            "is_original_caption": true,
            "lang": "eng-US",
            "language_code": "en",
            "language_id": 2,
            "source_tag": "trantor,vv_counter,",
            "sub_id": 1414027428,
            "sub_version": "1",
            "subtitle_type": 1,
            "translation_type": 0,
            "translator_id": 0,
            "url": "https://v16-cla.tiktokcdn.com/5a327574c5ef990cfd2239eff0e0ec35/67d5eaae/video/tos/maliva/tos-maliva-v-0068c799-us/ce229bd1b6944fdba6cc7d0f23d64684/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=20138&bt=10069&cs=0&ds=4&ft=gdpEk8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=13&rc=Mzx0dng5cm02eDMzZzczNEBpMzx0dng5cm02eDMzZzczNEBtZW8tMmQ0LmtgLS1kMS9zYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00050000",
            "url_list": [
              "https://v16-cla.tiktokcdn.com/5a327574c5ef990cfd2239eff0e0ec35/67d5eaae/video/tos/maliva/tos-maliva-v-0068c799-us/ce229bd1b6944fdba6cc7d0f23d64684/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=20138&bt=10069&cs=0&ds=4&ft=gdpEk8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=13&rc=Mzx0dng5cm02eDMzZzczNEBpMzx0dng5cm02eDMzZzczNEBtZW8tMmQ0LmtgLS1kMS9zYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00050000",
              "https://v19-cla.tiktokcdn.com/c55eef8e2c50cfd49465887b35e1cd0e/67d5eaae/video/tos/maliva/tos-maliva-v-0068c799-us/ce229bd1b6944fdba6cc7d0f23d64684/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=20138&bt=10069&cs=0&ds=4&ft=gdpEk8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=13&rc=Mzx0dng5cm02eDMzZzczNEBpMzx0dng5cm02eDMzZzczNEBtZW8tMmQ0LmtgLS1kMS9zYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00050000",
              "https://vas-useast2a.tiktokv.com/tiktok/v1/subtitle/url?aid=1233&format=webvtt&language=eng-US&sign=0df911922ed2d6eaa69eb73ff60e6a19&version=1%3Abig_caption&vid=v12044gd0000cun31j7og65u0srqh9p0"
            ],
            "variant": "big_caption"
          }
        ],
        "captions_type": 1,
        "creator_edited_caption_id": 0,
        "enable_auto_caption": 0,
        "has_original_audio": 1,
        "hide_original_caption": true,
        "no_caption_reason": 0,
        "original_language_info": {
          "can_translate_realtime": false,
          "can_translate_realtime_skip_translation_lang_check": true,
          "first_subtitle_time": 140,
          "is_burnin_caption": true,
          "lang": "eng-US",
          "language_code": "en",
          "language_id": 2,
          "original_caption_type": 5
        },
        "vertical_positions": null
      },
      "cover": {
        "height": 720,
        "uri": "tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk",
        "url_list": [
          "https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-cropcenter-q:300:400:q72.heic?dr=9232&nonce=93463&refresh_token=7bbcb84dbf1cb1312b55f3169fdeca9f&x-expires=1739566800&x-signature=BidLjvL6Y8z1jBNOj3Dr%2FUwk0l8%3D&biz_tag=tt_video&idc=no1a&ps=933b5bde&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480",
          "https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-cropcenter-q:300:400:q72.heic?dr=9232&nonce=19446&refresh_token=941895a08418cb71b079fce99a27d517&x-expires=1739566800&x-signature=SnIUNAin3M3n33RmaE0rx1Ee%2BJ4%3D&biz_tag=tt_video&idc=no1a&ps=933b5bde&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480"
        ],
        "url_prefix": null,
        "width": 720
      },
      "cover_is_custom": true,
      "download_addr": {
        "data_size": 16859548,
        "file_cs": "c:0-74468-d4ac",
        "height": 720,
        "uri": "v12044gd0000cun31j7og65u0srqh9p0",
        "url_list": [
          "https://v45.tiktokcdn-eu.com/aea1ea9809611129fc5f48cf2b063e8c/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oYgKThEIQDgnMWrfmbFSceFRkuD9mEADDBjRg8/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2954&bt=1477&cs=0&ds=3&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=OjtlNGYzZmRpZDlpZGZmZEBpMzx0dng5cm02eDMzZzczNEA2NV8vLTNjXl8xMmJeYmEwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
          "https://v16m.tiktokcdn-eu.com/572d1046a170bb8035299983319a4cdb/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oYgKThEIQDgnMWrfmbFSceFRkuD9mEADDBjRg8/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2954&bt=1477&cs=0&ds=3&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=OjtlNGYzZmRpZDlpZGZmZEBpMzx0dng5cm02eDMzZzczNEA2NV8vLTNjXl8xMmJeYmEwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
          "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?video_id=v12044gd0000cun31j7og65u0srqh9p0&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=3adcecaaef564abfaafc600c21bb8897&item_id=7470969622276164906&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjZhMzI3N2YwZGE3OGNkMDIwMmZkNDhkOTlmMjQ1NWU4&shp=d05b14bd&shcp=-"
        ],
        "url_prefix": null,
        "width": 720
      },
      "download_no_watermark_addr": {
        "data_size": 16179765,
        "file_cs": "c:0-74468-d4ac",
        "file_hash": "2871feb9980b134310472b61cf6d329a",
        "height": 1024,
        "uri": "v12044gd0000cun31j7og65u0srqh9p0",
        "url_key": "v12044gd0000cun31j7og65u0srqh9p0_h264_540p_1452223",
        "url_list": [
          "https://v45.tiktokcdn-eu.com/4274de166b88d55fe440e7512734e2f9/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oEC8AbnX2LFeHIGAgPIG4ueIR3f4AG6NHkcZij/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2836&bt=1418&cs=0&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=aGVlPDNpPDk1OWYzaDozPEBpMzx0dng5cm02eDMzZzczNEA0NjEyNWM0Xy0xYS9hLzYwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
          "https://v16m.tiktokcdn-eu.com/fe43b82b7e1a7df3aab21fcffa180c30/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oEC8AbnX2LFeHIGAgPIG4ueIR3f4AG6NHkcZij/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2836&bt=1418&cs=0&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=aGVlPDNpPDk1OWYzaDozPEBpMzx0dng5cm02eDMzZzczNEA0NjEyNWM0Xy0xYS9hLzYwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
          "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=399027de20dc4602b679ff80594b9b7e&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjY0NTU3OTU2ZWEzYmZiNWYwMDI3ZTQxYmMxMWQ3MThk&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
        ],
        "url_prefix": null,
        "width": 576
      },
      "duration": 89131,
      "dynamic_cover": {
        "height": 720,
        "uri": "tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk",
        "url_list": [
          "https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=15033&refresh_token=758ceb267d8ef4dcc577491eab17a9fc&x-expires=1739566800&x-signature=ySyYeAHD2YjJgI%2BjPuZflRd1Du4%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480",
          "https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQAAcLez6XArGbeAje8EGJILAkIFHFAQaPUtIk~tplv-tiktokx-origin.image?dr=9229&nonce=88364&refresh_token=0a80271767b59ca6948b6c72823fe2ac&x-expires=1739566800&x-signature=rWJ1lzgx0PSiz6aG5tY%2B3m9J%2BhE%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480"
        ],
        "url_prefix": null,
        "width": 720
      },
      "has_watermark": true,
      "height": 1024,
      "is_bytevc1": 0,
      "is_callback": true,
      "is_long_video": 1,
      "meta": "{\"LoudnessRange\":\"10\",\"LoudnessRangeEnd\":\"-14\",\"LoudnessRangeStart\":\"-24\",\"MaximumMomentaryLoudness\":\"-7.6\",\"MaximumShortTermLoudness\":\"-10.1\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Peak\\\":1,\\\"Loudness\\\":-16.1,\\\"LoudnessRangeEnd\\\":-14,\\\"LoudnessRangeStart\\\":-24,\\\"MaximumMomentaryLoudness\\\":-7.6,\\\"Metrics\\\":{\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":0},\\\"RMSStats\\\":{\\\"LRDiff\\\":0,\\\"LTotal\\\":-19.652,\\\"Peak\\\":0.135,\\\"RTotal\\\":-19.652},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.1,\\\"SingingRatio\\\":0,\\\"SpeechRatio\\\":0.84},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"Loud\\\":-15.72,\\\"LoudR\\\":7.6,\\\"LoudRE\\\":-13.7,\\\"LoudRS\\\":-21.3,\\\"MaxMomLoud\\\":-7.6,\\\"MaxSTLoud\\\":-10.7}},\\\"Cutoff\\\":{\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.08,\\\"Spkr200G\\\":0.17,\\\"FCenL\\\":2842.44,\\\"FCenR\\\":2842.45},\\\"Loudness\\\":{\\\"Integrated\\\":-16.079}},\\\"LoudnessRange\\\":10,\\\"MaximumShortTermLoudness\\\":-10.1,\\\"Version\\\":2}\",\"bright_ratio_mean\":\"0.038\",\"brightness_mean\":\"115.3351\",\"diff_overexposure_ratio\":\"0.0309\",\"flight_id\":\"\",\"loudness\":\"-16.1\",\"overexposure_ratio_mean\":\"0.0375\",\"peak\":\"1\",\"play_time_prob_dist\":\"[800,0.4334,8093.8561]\",\"qprf\":\"1.000\",\"sr_score\":\"1.000\",\"std_brightness\":\"25.5914\",\"vq_score\":\"62.38\"}",
      "misc_download_addrs": "{\"suffix_scene\":{\"uri\":\"v12044gd0000cun31j7og65u0srqh9p0\",\"url_list\":[\"https://v45.tiktokcdn-eu.com/d79b6377216a620595203ffb77ced96a/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oU87EySR5ErjDiDoDQgFpriVIfVenMEBmQD8uA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2972&bt=1486&cs=0&ds=3&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=PGg2NmU1ZGVmZjg1NDU7OEBpMzx0dng5cm02eDMzZzczNEAxMC0xYGBgX2ExMy5eNDA2YSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000\",\"https://v16m.tiktokcdn-eu.com/2051a15d75dcf393ca1cbeb46931498c/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oU87EySR5ErjDiDoDQgFpriVIfVenMEBmQD8uA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2972&bt=1486&cs=0&ds=3&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=PGg2NmU1ZGVmZjg1NDU7OEBpMzx0dng5cm02eDMzZzczNEAxMC0xYGBgX2ExMy5eNDA2YSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000\",\"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?video_id=v12044gd0000cun31j7og65u0srqh9p0&line=0&watermark=1&logo_name=tiktok_end_sonic&source=PUBLISH&file_id=953872a112654cdcbbcac2cb43033e49&item_id=7470969622276164906&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmU2ZDFiZjMzNzFhMzNmNTQ5NzkyZDcyYTQ5N2M1Mjk2&shp=d05b14bd&shcp=-\"],\"width\":720,\"height\":720,\"data_size\":17719602,\"file_cs\":\"c:0-74468-d4ac\",\"url_prefix\":null}}",
      "need_set_token": false,
      "origin_cover": {
        "height": 720,
        "uri": "tos-useast5-p-0068-tx/owbjnDQ8DCDRg9AMQiVEBxmckSFrRrTEUYeDfJ",
        "url_list": [
          "https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owbjnDQ8DCDRg9AMQiVEBxmckSFrRrTEUYeDfJ~tplv-dmt-adapt-360p.heic?dr=1360&nonce=111&refresh_token=271214883574832c6f9fd824b97eba11&x-expires=1739566800&x-signature=HIBKznu101n2Z345D5KEeIhssrM%3D&biz_tag=tt_video&idc=no1a&ps=d97f9a4f&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480",
          "https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owbjnDQ8DCDRg9AMQiVEBxmckSFrRrTEUYeDfJ~tplv-dmt-adapt-360p.heic?dr=1360&nonce=26779&refresh_token=00d4945174a967007e76f995bc5480cf&x-expires=1739566800&x-signature=doWRKdnqovStNr1UO952rc%2BiUso%3D&biz_tag=tt_video&idc=no1a&ps=d97f9a4f&s=PUBLISH&sc=cover&shcp=132edbea&shp=d05b14bd&t=bacd0480"
        ],
        "url_prefix": null,
        "width": 720
      },
      "play_addr": {
        "data_size": 16179765,
        "file_cs": "c:0-74468-d4ac",
        "file_hash": "2871feb9980b134310472b61cf6d329a",
        "height": 1024,
        "uri": "v12044gd0000cun31j7og65u0srqh9p0",
        "url_key": "v12044gd0000cun31j7og65u0srqh9p0_h264_540p_1452223",
        "url_list": [
          "https://v45.tiktokcdn-eu.com/4274de166b88d55fe440e7512734e2f9/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oEC8AbnX2LFeHIGAgPIG4ueIR3f4AG6NHkcZij/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2836&bt=1418&cs=0&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=aGVlPDNpPDk1OWYzaDozPEBpMzx0dng5cm02eDMzZzczNEA0NjEyNWM0Xy0xYS9hLzYwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
          "https://v16m.tiktokcdn-eu.com/fe43b82b7e1a7df3aab21fcffa180c30/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oEC8AbnX2LFeHIGAgPIG4ueIR3f4AG6NHkcZij/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2836&bt=1418&cs=0&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=aGVlPDNpPDk1OWYzaDozPEBpMzx0dng5cm02eDMzZzczNEA0NjEyNWM0Xy0xYS9hLzYwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
          "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=399027de20dc4602b679ff80594b9b7e&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjY0NTU3OTU2ZWEzYmZiNWYwMDI3ZTQxYmMxMWQ3MThk&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
        ],
        "url_prefix": null,
        "width": 576
      },
      "play_addr_bytevc1": {
        "data_size": 7002098,
        "file_cs": "c:0-74977-e4c4",
        "file_hash": "a8c68e5cc4f7fb6be52cd36407780d8a",
        "height": 1024,
        "uri": "v12044gd0000cun31j7og65u0srqh9p0",
        "url_key": "v12044gd0000cun31j7og65u0srqh9p0_bytevc1_540p_628477",
        "url_list": [
          "https://v45.tiktokcdn-eu.com/5615b66337051da8f1424d8115d98a78/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oQSDyGErEWAQElFgnbpAeOjfDD8RBMEruIDFmo/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1226&bt=613&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=11&rc=Ozw3OTo4aTw1NWg8ODVnaEBpMzx0dng5cm02eDMzZzczNEAyXi8yNjA1NTAxLzA1MmMxYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
          "https://v16m.tiktokcdn-eu.com/db7b1f9691741ff5eeab9542f2fc5dcb/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oQSDyGErEWAQElFgnbpAeOjfDD8RBMEruIDFmo/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1226&bt=613&cs=2&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=11&rc=Ozw3OTo4aTw1NWg8ODVnaEBpMzx0dng5cm02eDMzZzczNEAyXi8yNjA1NTAxLzA1MmMxYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
          "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=4efd5285392e4232898f35975624a958&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjBhZjg4OTMyZTJhN2EyZmI2Y2E0YzhjNWZiYjI0MTQ3&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
        ],
        "url_prefix": null,
        "width": 576
      },
      "play_addr_h264": {
        "data_size": 16179765,
        "file_cs": "c:0-74468-d4ac",
        "file_hash": "2871feb9980b134310472b61cf6d329a",
        "height": 1024,
        "uri": "v12044gd0000cun31j7og65u0srqh9p0",
        "url_key": "v12044gd0000cun31j7og65u0srqh9p0_h264_540p_1452223",
        "url_list": [
          "https://v45.tiktokcdn-eu.com/4274de166b88d55fe440e7512734e2f9/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oEC8AbnX2LFeHIGAgPIG4ueIR3f4AG6NHkcZij/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2836&bt=1418&cs=0&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=aGVlPDNpPDk1OWYzaDozPEBpMzx0dng5cm02eDMzZzczNEA0NjEyNWM0Xy0xYS9hLzYwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00095000",
          "https://v16m.tiktokcdn-eu.com/fe43b82b7e1a7df3aab21fcffa180c30/67afaf2e/video/tos/maliva/tos-maliva-ve-0068c799-us/oEC8AbnX2LFeHIGAgPIG4ueIR3f4AG6NHkcZij/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2836&bt=1418&cs=0&ds=6&ft=td_Lr8QLodzR12NvyHRYeIxRhz8biq_45SY&mime_type=video_mp4&qs=0&rc=aGVlPDNpPDk1OWYzaDozPEBpMzx0dng5cm02eDMzZzczNEA0NjEyNWM0Xy0xYS9hLzYwYSNtZW8tMmQ0LmtgLS1kMS9zcw%3D%3D&vvpl=1&l=2025021321000493B049F106499F57B023&btag=e00090000",
          "https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=399027de20dc4602b679ff80594b9b7e&is_play_url=1&item_id=7470969622276164906&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjY0NTU3OTU2ZWEzYmZiNWYwMDI3ZTQxYmMxMWQ3MThk&source=PUBLISH&video_id=v12044gd0000cun31j7og65u0srqh9p0"
        ],
        "url_prefix": null,
        "width": 576
      },
      "ratio": "540p",
      "source_HDR_type": 0,
      "tags": null,
      "video_model": "",
      "width": 576
    },
    "video_control": {
      "allow_download": false,
      "allow_duet": true,
      "allow_dynamic_wallpaper": true,
      "allow_music": true,
      "allow_react": true,
      "allow_stitch": true,
      "draft_progress_bar": 1,
      "prevent_download_type": 2,
      "share_type": 0,
      "show_progress_bar": 1,
      "timer_status": 1
    },
    "video_labels": [],
    "video_text": [],
    "visual_search_info": {},
    "voice_filter_ids": null,
    "with_promotional_music": false,
    "without_watermark": false,
    "is_ad": false,
    "is_eligible_for_commission": false
  }
]

Verify Response Structure

Check that your response includes the expected fields:

  • 0(object)

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 profile videos, consider batching requests to maximize throughput while staying within rate limits.

Async Processing

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

Common Use Cases

Market Research

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

Content Analytics

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

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 profile videos?

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 profile videos?

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 Node.js frameworks?

Yes! This tutorial focuses on core Node.js HTTP concepts that work with any framework. The API calls remain the same regardless of your specific Node.js 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 Start Scraping?

Get started with 100 free API calls. No credit card required.