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
Extract video data from TikTok
Learn how to scrape TikTok videos using Python. This comprehensive guide will walk you through the entire process, from setup to implementation.
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.
Make sure you have the following installed:
Requests is a simple HTTP library for Python
pip install requests
Now let's make a request to the TikTok API using Python. Replace YOUR_API_KEY
with your actual API key.
import requests
API_KEY = 'YOUR_API_KEY'
def scrape():
headers = {
'x-api-key': API_KEY,
'Content-Type': 'application/json'
}
params = {
'url': 'https://www.tiktok.com/@randomspamvideos25/video/7251387037834595630',
'get_transcript': 'example_value',
'region': 'US',
'trim': 'example_value'
}
try:
response = requests.get(f'https://api.scrapecreators.com/v2/tiktok/video', 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()
This endpoint accepts the following parameters:
url
Required(string)TikTok video URL
Example: https://www.tiktok.com/@randomspamvideos25/video/7251387037834595630
get_transcript
Optional(boolean)Get transcript of the video
region
Optional(string)Region of the proxy. Sometimes you'll need to specify the region if you're not getting a response. Commonly for videos from the Phillipines, in which case you'd use 'PH'. Use 2 letter country codes like US, GB, FR, etc
Example: US
trim
Optional(boolean)Set to true to get a trimmed response
Execute your script to test the API connection. You should see a JSON response with TikTok videos data.
✅ Success: You should receive a structured JSON response containing the requested data.
Here's an example of the JSON response you'll receive:
{
"aweme_detail": {
"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:q75.webp?dr=9607&idc=no1a&nonce=79100&ps=87d6e48a&refresh_token=bbc845dfbc002fe3a227cc1fc244b48d&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q75.jpeg?dr=9607&idc=no1a&nonce=55282&ps=87d6e48a&refresh_token=e08f6cf31f5adcc5e86eca1401dc98be&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9606&idc=no1a&nonce=81284&ps=87d6e48a&refresh_token=39d746f08883a7182153847a8d083a36&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q75.jpeg?dr=9606&idc=no1a&nonce=81630&ps=87d6e48a&refresh_token=885685771e03436d3c87c1cb67597981&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9608&idc=no1a&nonce=38972&ps=87d6e48a&refresh_token=f236d2fb2c81b7f73a2afc7656f19db5&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:1080:1080:q75.jpeg?dr=9608&idc=no1a&nonce=62849&ps=87d6e48a&refresh_token=de6a42b70afafdfdcff20f1877bcb18f&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9607&idc=no1a&nonce=79100&ps=87d6e48a&refresh_token=bbc845dfbc002fe3a227cc1fc244b48d&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q75.jpeg?dr=9607&idc=no1a&nonce=55282&ps=87d6e48a&refresh_token=e08f6cf31f5adcc5e86eca1401dc98be&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9606&idc=no1a&nonce=81284&ps=87d6e48a&refresh_token=39d746f08883a7182153847a8d083a36&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q75.jpeg?dr=9606&idc=no1a&nonce=81630&ps=87d6e48a&refresh_token=885685771e03436d3c87c1cb67597981&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4"
],
"url_prefix": null,
"width": 720
},
"create_time": 1737673405,
"dmv_auto_show": false,
"duration": 89,
"duration_high_precision": {
"audition_duration_precision": 89.861,
"duration_precision": 89.861,
"shoot_duration_precision": 89.861,
"video_duration_precision": 89.861
},
"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\":7341864865646052385,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000cu9cle7og65godr7i82g\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
"has_commerce_right": true,
"id": 7463250381684477000,
"id_str": "7463250381684476718",
"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": "7463250381684476718",
"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/7463250409558133546.mp3",
"url_list": [
"https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7463250409558133546.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": [],
"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:q75.webp?dr=9604&idc=no1a&nonce=43237&ps=87d6e48a&refresh_token=118418834879c6152f79dfca71bf25a7&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:168:168:q75.jpeg?dr=9604&idc=no1a&nonce=85934&ps=87d6e48a&refresh_token=93d46b405775c894e83ac0abf3f5b76b&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9605&idc=no1a&nonce=7685&ps=87d6e48a&refresh_token=17b2d06bc033913ba7751967ae44227c&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:300:300:q75.jpeg?dr=9605&idc=no1a&nonce=68355&ps=87d6e48a&refresh_token=d99683c0b1ca4900a5f913670cb43e84&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9608&idc=no1a&nonce=22461&ps=87d6e48a&refresh_token=9f9d3e2d87bf949218a32545c9aa9ba3&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:1080:1080:q75.jpeg?dr=9608&idc=no1a&nonce=96721&ps=87d6e48a&refresh_token=b08b83f46fd40b4dad85949510548f92&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9607&idc=no1a&nonce=55857&ps=87d6e48a&refresh_token=552dacc348d1974b18d260397f3b6041&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q75.jpeg?dr=9607&idc=no1a&nonce=8194&ps=87d6e48a&refresh_token=263a7e18c1803273afabdf19363d36b0&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9606&idc=no1a&nonce=23586&ps=87d6e48a&refresh_token=6048a0248e86d44f7d84c5896b9cd58b&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q75.jpeg?dr=9606&idc=no1a&nonce=3848&ps=87d6e48a&refresh_token=c201423aedb4135ba265e9d1c473b16a&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4"
],
"url_prefix": null,
"width": 720
},
"avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
"aweme_count": 0,
"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": 0,
"fb_expire_time": 0,
"follow_status": 0,
"follower_count": 0,
"follower_status": 0,
"followers_detail": null,
"following_count": 0,
"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",
"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,
"story_status": 0,
"total_favorited": 0,
"tw_expire_time": 0,
"twitter_id": "",
"twitter_name": "",
"type_label": null,
"uid": "6659752019493208069",
"unique_id": "stoolpresidente",
"unique_id_modify_time": 1737751061,
"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": "7463250363559218474",
"aweme_type": 0,
"banners": [
{
"key": {
"component_key": "bottom_banner_playlist"
}
},
{
"key": {
"component_key": "bottom_banner_search_rs"
}
}
],
"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.78970336914062
},
"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.0007590943722992407}"
},
"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,
"with_comment_filter_words": false
},
"content_desc": "",
"content_desc_extra": [],
"content_model": {
"custom_biz": {
"aweme_trace": "202501242037412A7D0539A000DA01E8FC"
},
"standard_biz": {
"creator_analytics": {
"creator_analytics_entrance_status": 0
},
"e_commerce": {
"ttec_content_tag": {
"recommendation_tag_consumer_str": "",
"recommendation_tag_creator_str": ""
}
},
"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": 1737673396,
"creation_info": {
"creation_used_functions": [
"select_music",
"high_quality_upload"
]
},
"desc": "Stopped by the viral @Amici Pizza to figure out if it’s the food or social media that is causing lines around the block",
"desc_language": "en",
"disable_search_trending_bar": false,
"distance": "",
"distribute_type": 2,
"follow_up_publish_from_id": -1,
"geofencing": null,
"geofencing_regions": null,
"green_screen_materials": null,
"group_id": "7463250363559218474",
"group_id_list": {
"GroupdIdList0": [
7463250363559218000
],
"GroupdIdList1": [
7463250363559218000
]
},
"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=62235&refresh_token=d05ae0e7eab09de63350f28a9a61aa0b&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=79136&refresh_token=738f20ed80687e0e4be985756b02cdc6&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": [],
"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:q75.webp?dr=9607&idc=no1a&nonce=79100&ps=87d6e48a&refresh_token=bbc845dfbc002fe3a227cc1fc244b48d&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q75.jpeg?dr=9607&idc=no1a&nonce=55282&ps=87d6e48a&refresh_token=e08f6cf31f5adcc5e86eca1401dc98be&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9606&idc=no1a&nonce=81284&ps=87d6e48a&refresh_token=39d746f08883a7182153847a8d083a36&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q75.jpeg?dr=9606&idc=no1a&nonce=81630&ps=87d6e48a&refresh_token=885685771e03436d3c87c1cb67597981&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9608&idc=no1a&nonce=38972&ps=87d6e48a&refresh_token=f236d2fb2c81b7f73a2afc7656f19db5&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:1080:1080:q75.jpeg?dr=9608&idc=no1a&nonce=62849&ps=87d6e48a&refresh_token=de6a42b70afafdfdcff20f1877bcb18f&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9607&idc=no1a&nonce=79100&ps=87d6e48a&refresh_token=bbc845dfbc002fe3a227cc1fc244b48d&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:720:720:q75.jpeg?dr=9607&idc=no1a&nonce=55282&ps=87d6e48a&refresh_token=e08f6cf31f5adcc5e86eca1401dc98be&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&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:q75.webp?dr=9606&idc=no1a&nonce=81284&ps=87d6e48a&refresh_token=39d746f08883a7182153847a8d083a36&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4",
"https://p16-amd-va.tiktokcdn.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter-q:100:100:q75.jpeg?dr=9606&idc=no1a&nonce=81630&ps=87d6e48a&refresh_token=885685771e03436d3c87c1cb67597981&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=45126217&t=223449c4"
],
"url_prefix": null,
"width": 720
},
"create_time": 1737673405,
"dmv_auto_show": false,
"duration": 89,
"duration_high_precision": {
"audition_duration_precision": 89.861,
"duration_precision": 89.861,
"shoot_duration_precision": 89.861,
"video_duration_precision": 89.861
},
"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\":7341864865646052385,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000cu9cle7og65godr7i82g\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
"has_commerce_right": true,
"id": 7463250381684477000,
"id_str": "7463250381684476718",
"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": "7463250381684476718",
"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/7463250409558133546.mp3",
"url_list": [
"https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7463250409558133546.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": [],
"uncert_artists": null,
"user_count": 0,
"video_duration": 89
},
"music_begin_time_in_ms": 0,
"music_end_time_in_ms": 89789,
"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": "Stopped by the viral <m id=\"1\">@Amici Pizza</m> to figure out if it’s the food or social media that is causing lines around the block",
"text_extra": [
{
"sec_uid": "MS4wLjABAAAAtCvVgxZZorPs2zeJI_8x-0vZ-rddzcPhU3F8O3plw-2w7bWdilLFTxjKkPGVOQKj",
"tag_id": "1",
"type": 0,
"user_id": "7195352304136406059"
}
]
},
"picked_users": [],
"playlist_blocked": false,
"playlist_info": {
"index": 478,
"item_total": 479,
"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/7463250363559218474?_r=1&u_code=ed0b5ccjk543jc&preview_pb=0&sharer_language=en&_d=ed0b3jhic3ieil&share_item_id=7463250363559218474&source=h5_m",
"whatsapp_desc": "Download TikTok and watch more fun videos:"
},
"share_url": "https://www.tiktok.com/@stoolpresidente/video/7463250363559218474?_r=1&u_code=ed0b5ccjk543jc&preview_pb=0&sharer_language=en&_d=ed0b3jhic3ieil&share_item_id=7463250363559218474&source=h5_m",
"shoot_tab_name": "photo",
"social_interaction_blob": {
"auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLM="
},
"solaria_profile": {
"profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10085\",\"play_time_prob_dist\":\"[800,0.4237,7462.2842]\"}"
},
"sort_label": "",
"standard_component_info": {
"banner_enabled": true
},
"statistics": {
"aweme_id": "7463250363559218474",
"collect_count": 980,
"comment_count": 270,
"digg_count": 44855,
"download_count": 95,
"forward_count": 0,
"lose_comment_count": 0,
"lose_count": 0,
"play_count": 355687,
"repost_count": 0,
"share_count": 3100,
"whatsapp_share_count": 4
},
"status": {
"allow_comment": true,
"allow_share": true,
"aweme_id": "7463250363559218474",
"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
},
"suggest_words": {
"suggest_words": [
{
"hint_text": "Search · ",
"qrec_virtual_enable": "",
"scene": "feed_bar",
"words": [
{
"penetrate_info": "{\"hot_level\":\"0\",\"is_ramandan_promotion\":\"\",\"ecom_intent\":\"0\",\"ecom_trigger_info\":\"\",\"lvl3_cate_list\":\"\",\"ecom_trigger_info_map\":\"\",\"generate_time\":\"1711612968\",\"word_type_list\":\"\",\"lvl1_category_id\":\"\",\"is_time_sensitive\":\"0\",\"predict_ctr_score\":0.016952475307343163}",
"word": "dave portnoy highest pizza rating",
"word_id": "8130136440052948635",
"word_record": {
"words_lang": "en"
}
}
]
},
{
"hint_text": "Search:",
"qrec_virtual_enable": "",
"scene": "comment_top",
"words": [
{
"penetrate_info": "{\"ecom_trigger_info\":\"\",\"generate_time\":\"1711612968\",\"hot_level\":\"0\",\"predict_ctr_score\":0.014526265644358884,\"lvl1_category_id\":\"\",\"is_ramandan_promotion\":\"\",\"ecom_intent\":\"0\",\"lvl3_cate_list\":\"\",\"ecom_trigger_info_map\":\"\",\"word_type_list\":\"\",\"is_time_sensitive\":\"0\"}",
"word": "dave portnoy highest pizza rating",
"word_id": "8130136440052948635",
"word_record": {
"words_lang": "en"
}
}
]
}
]
},
"support_danmaku": false,
"text_extra": [
{
"end": 33,
"sec_uid": "MS4wLjABAAAAtCvVgxZZorPs2zeJI_8x-0vZ-rddzcPhU3F8O3plw-2w7bWdilLFTxjKkPGVOQKj",
"start": 21,
"type": 0,
"user_id": "7195352304136406059"
}
],
"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": 47.90556411382498,
"ai_dynamic_cover": {
"uri": "tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW",
"url_list": [
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=58590&refresh_token=1a53dee6ff3c3927f6b8035d3b881144&x-expires=1737835200&x-signature=rfAa3XYt7qWYoEUZeQ81EFc92jY%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=61748&refresh_token=04926f8a2ae67816331d94c8b487d9aa&x-expires=1737835200&x-signature=3ZVIayK8aRRYiFdv5lCWvGvf5NU%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.jpeg?dr=9229&nonce=10648&refresh_token=4a5733c1a7a4d70ffc30abd4b148c5a9&x-expires=1737835200&x-signature=vZWbyGK8ecEHp3TWgZ7H8Es3J30%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480"
],
"url_prefix": null
},
"ai_dynamic_cover_bak": {
"uri": "tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW",
"url_list": [
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=58590&refresh_token=1a53dee6ff3c3927f6b8035d3b881144&x-expires=1737835200&x-signature=rfAa3XYt7qWYoEUZeQ81EFc92jY%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=61748&refresh_token=04926f8a2ae67816331d94c8b487d9aa&x-expires=1737835200&x-signature=3ZVIayK8aRRYiFdv5lCWvGvf5NU%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.jpeg?dr=9229&nonce=10648&refresh_token=4a5733c1a7a4d70ffc30abd4b148c5a9&x-expires=1737835200&x-signature=vZWbyGK8ecEHp3TWgZ7H8Es3J30%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480"
],
"url_prefix": null
},
"animated_cover": {
"uri": "tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW",
"url_list": [
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=58590&refresh_token=1a53dee6ff3c3927f6b8035d3b881144&x-expires=1737835200&x-signature=rfAa3XYt7qWYoEUZeQ81EFc92jY%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=61748&refresh_token=04926f8a2ae67816331d94c8b487d9aa&x-expires=1737835200&x-signature=3ZVIayK8aRRYiFdv5lCWvGvf5NU%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.jpeg?dr=9229&nonce=10648&refresh_token=4a5733c1a7a4d70ffc30abd4b148c5a9&x-expires=1737835200&x-signature=vZWbyGK8ecEHp3TWgZ7H8Es3J30%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480"
],
"url_prefix": null
},
"big_thumbs": [
{
"duration": 89.7897,
"fext": "jpeg",
"img_num": 90,
"img_uris": [
"tos-maliva-p-0068c799-us/oYfEDsFk1QDNAqHAo2SgfiEYnlQORisDSuXslB",
"tos-maliva-p-0068c799-us/o0QSQGDfRyskAmDnYFajf1Di2oqEAExgSDsrBx",
"tos-maliva-p-0068c799-us/o8rDQ2FmWiSAH1QSDIDAQokqRYngyBeEXsEsfN",
"tos-maliva-p-0068c799-us/o8neQS1EADEmDgqm2yRBfFrqoDSLAQiYRsksoE"
],
"img_url": "",
"img_urls": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oYfEDsFk1QDNAqHAo2SgfiEYnlQORisDSuXslB~tplv-noop.image?x-expires=1737837550&x-signature=IoKqDEKoBMx5ZMowFKwenDjG2nQ%3D",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/o0QSQGDfRyskAmDnYFajf1Di2oqEAExgSDsrBx~tplv-noop.image?x-expires=1737837550&x-signature=zpmiqNkpicqL%2Fd8DBnD9xUBPjDw%3D",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/o8rDQ2FmWiSAH1QSDIDAQokqRYngyBeEXsEsfN~tplv-noop.image?x-expires=1737837550&x-signature=DojFXXOE1%2FPd5Fov49EUaRKBye4%3D",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/o8neQS1EADEmDgqm2yRBfFrqoDSLAQiYRsksoE~tplv-noop.image?x-expires=1737837550&x-signature=0NeGVPmTWM4nYmw5vFmDpRojf9g%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": 628217,
"dub_infos": null,
"fps": 29,
"gear_name": "adapt_lower_720_2",
"is_bytevc1": 2,
"play_addr": {
"data_size": 7051192,
"file_cs": "c:0-75721-0b32",
"file_hash": "83d21334c9ace97f3da93bdc9e100fa0",
"height": 1280,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_bytevc2_720p_628217",
"url_list": [
"https://v45.tiktokcdn-eu.com/cd9dfbd079c6fee1a8f1487cd257f163/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/oY1mRs2OnQSNEcDqRBkFfsoEIsDgYFADAgfGti/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1226&bt=613&cs=5&ds=3&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=14&rc=Mzo6NTY4PGRpNGQ7OTk0N0BpanRyN285cjNmeDMzZzczNEAtYzIwLWEvXi4xYWBfMjI1YSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/9c1cb429c4daf62279d12ba61381740f/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/oY1mRs2OnQSNEcDqRBkFfsoEIsDgYFADAgfGti/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1226&bt=613&cs=5&ds=3&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=14&rc=Mzo6NTY4PGRpNGQ7OTk0N0BpanRyN285cjNmeDMzZzczNEAtYzIwLWEvXi4xYWBfMjI1YSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=845156b6c8da411faa29d5033257f700&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmJmZTI3MWNjOTk0MDczOTc4YzJkZWYxZDNmYTdhYzE4&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"url_prefix": null,
"width": 720
},
"quality_type": 14,
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 219271}, {\\\"time\\\": 2, \\\"offset\\\": 292665}, {\\\"time\\\": 3, \\\"offset\\\": 362402}, {\\\"time\\\": 4, \\\"offset\\\": 444482}, {\\\"time\\\": 5, \\\"offset\\\": 526571}, {\\\"time\\\": 10, \\\"offset\\\": 1022024}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 94.138, \\\"v960\\\": 95.619, \\\"v864\\\": 96.688, \\\"v720\\\": 91.056}, \\\"ori\\\": {\\\"v1080\\\": 86.061, \\\"v960\\\": 89.096, \\\"v864\\\": 91.248, \\\"v720\\\": 93.738}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"5c0d611eb982023ce75a1131d6371a68\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":61.7,\\\"score_spk\\\":61.7}}\"}"
},
{
"HDR_bit": "",
"HDR_type": "",
"bit_rate": 612517,
"dub_infos": null,
"fps": 29,
"gear_name": "adapt_540_1",
"is_bytevc1": 1,
"play_addr": {
"data_size": 6874971,
"file_cs": "c:0-75525-e8f5",
"file_hash": "d362ea60a1c8106dc4292c380bf01e4d",
"height": 1024,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_bytevc1_540p_612517",
"url_list": [
"https://v45.tiktokcdn-eu.com/5837878732c464dbea3c3d3edf0851b9/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o8gBxAIrU5MiZdABK4zmW17FEPGESQBS6RjLi/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1196&bt=598&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=11&rc=NzQ4ZjM0NzU0NDdkNDU0OUBpanRyN285cjNmeDMzZzczNEA1YmNjMy1gXl4xLS82Li5eYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/a504d56d108d719fd3b955da9d753534/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o8gBxAIrU5MiZdABK4zmW17FEPGESQBS6RjLi/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1196&bt=598&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=11&rc=NzQ4ZjM0NzU0NDdkNDU0OUBpanRyN285cjNmeDMzZzczNEA1YmNjMy1gXl4xLS82Li5eYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=a61112912a0441a1a2c40160fcf5e184&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmU1YWNmZmFiYzhjN2M5NGIxODkzYTUyODQ0ZTY1MGZl&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"url_prefix": null,
"width": 576
},
"quality_type": 28,
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 215220}, {\\\"time\\\": 2, \\\"offset\\\": 278287}, {\\\"time\\\": 3, \\\"offset\\\": 366079}, {\\\"time\\\": 4, \\\"offset\\\": 444744}, {\\\"time\\\": 5, \\\"offset\\\": 517167}, {\\\"time\\\": 10, \\\"offset\\\": 1003259}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.448, \\\"v960\\\": 95.928, \\\"v864\\\": 95.841, \\\"v720\\\": 97.398}, \\\"ori\\\": {\\\"v1080\\\": 84.367, \\\"v960\\\": 86.518, \\\"v864\\\": 88.946, \\\"v720\\\": 91.67}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"78bf550463b1b364653d8f9bf1f9540e\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":61.7,\\\"score_spk\\\":61.7}}\"}"
},
{
"HDR_bit": "",
"HDR_type": "",
"bit_rate": 514600,
"dub_infos": null,
"fps": 29,
"gear_name": "lower_540_1",
"is_bytevc1": 1,
"play_addr": {
"data_size": 5775937,
"file_cs": "c:0-75522-ab68",
"file_hash": "bbc791b09a85b85c9a89f607620d23ec",
"height": 1024,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_bytevc1_540p_514600",
"url_list": [
"https://v45.tiktokcdn-eu.com/73f063a2267904bf5d3cdcd727c61937/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/oEAWFQLBEAEB4BWWgPUZKIiR75S2zii1gg6RM/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1004&bt=502&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=4&rc=aDo2N2dnNzQ1ODQ7O2ZpZEBpanRyN285cjNmeDMzZzczNEA1LzA0NjFfNWExMTAxLjYwYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/ebf65eef555517bf33e366e28d93a5b3/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/oEAWFQLBEAEB4BWWgPUZKIiR75S2zii1gg6RM/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1004&bt=502&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=4&rc=aDo2N2dnNzQ1ODQ7O2ZpZEBpanRyN285cjNmeDMzZzczNEA1LzA0NjFfNWExMTAxLjYwYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=3a9f1c48384145d281b44d9d7433278e&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjBmYjJjNTdjMWU1Yjk3ZGFjMDA5YjhkMzAxOTYxZTQ3&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"url_prefix": null,
"width": 576
},
"quality_type": 24,
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 189899}, {\\\"time\\\": 2, \\\"offset\\\": 253271}, {\\\"time\\\": 3, \\\"offset\\\": 330507}, {\\\"time\\\": 4, \\\"offset\\\": 407583}, {\\\"time\\\": 5, \\\"offset\\\": 473885}, {\\\"time\\\": 10, \\\"offset\\\": 903655}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 89.191, \\\"v960\\\": 91.893, \\\"v864\\\": 94.297, \\\"v720\\\": 95.16}, \\\"ori\\\": {\\\"v1080\\\": 77.989, \\\"v960\\\": 81.713, \\\"v864\\\": 84.411, \\\"v720\\\": 88.546}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"c9c1626bc6698cf78886352a58e091d0\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":61.7,\\\"score_spk\\\":61.7}}\"}"
},
{
"HDR_bit": "",
"HDR_type": "",
"bit_rate": 380426,
"dub_infos": null,
"fps": 29,
"gear_name": "lowest_540_1",
"is_bytevc1": 1,
"play_addr": {
"data_size": 4269959,
"file_cs": "c:0-75522-0134",
"file_hash": "51e08ca4ce345605dcce3c52b2f1723f",
"height": 1024,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_bytevc1_540p_380426",
"url_list": [
"https://v45.tiktokcdn-eu.com/cf62b5168ab169f0383ba08125bb5213/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o8A1ZP7QEi5Bg4mzsLUMESRUBEAEW6KdR3IBi/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=742&bt=371&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=5&rc=aGU1Ojo3Nzk5NmU2O2hoOEBpanRyN285cjNmeDMzZzczNEBhNDJgYS9fNi0xMTY0NWAtYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/9d332ea4f0d74bd9d6ca4b8fca242cc2/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o8A1ZP7QEi5Bg4mzsLUMESRUBEAEW6KdR3IBi/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=742&bt=371&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=5&rc=aGU1Ojo3Nzk5NmU2O2hoOEBpanRyN285cjNmeDMzZzczNEBhNDJgYS9fNi0xMTY0NWAtYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=05ce8e78934b430696b424d7c7527bde&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjY0NjZhMmYyZDFkMmY3YzBhYTEzM2IwMmI4OWE0M2Yx&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"url_prefix": null,
"width": 576
},
"quality_type": 25,
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 166118}, {\\\"time\\\": 2, \\\"offset\\\": 215993}, {\\\"time\\\": 3, \\\"offset\\\": 275968}, {\\\"time\\\": 4, \\\"offset\\\": 337595}, {\\\"time\\\": 5, \\\"offset\\\": 387645}, {\\\"time\\\": 10, \\\"offset\\\": 734561}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 83.266, \\\"v960\\\": 85.609, \\\"v864\\\": 89.436, \\\"v720\\\": 90.724}, \\\"ori\\\": {\\\"v1080\\\": 72.119, \\\"v960\\\": 75.987, \\\"v864\\\": 78.609, \\\"v720\\\": 83.28}}}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"269447d6596ef028136ff1205583e26d\",\"audio_score\":\"{\\\"v1\\\":{\\\"score\\\":61.7,\\\"score_spk\\\":61.7}}\"}"
}
],
"bit_rate_audio": [],
"cdn_url_expired": 0,
"cla_info": {
"caption_infos": [
{
"caption_format": "webvtt",
"caption_length": 1589,
"cla_subtitle_id": 7463250581113687000,
"complaint_id": 7463250581113687000,
"expire": 1740343150,
"is_auto_generated": true,
"is_original_caption": true,
"lang": "eng-US",
"language_code": "en",
"language_id": 2,
"source_tag": "trantor,vv_counter,",
"sub_id": 353329388,
"sub_version": "1",
"subtitle_type": 1,
"translation_type": 0,
"translator_id": 0,
"url": "https://v19-cla.tiktokcdn.com/4a58ac0ea33a454f9b9f699f59df9dbf/67bb876e/video/tos/maliva/tos-maliva-v-0068c799-us/2083cc8a44054bb4873c0a3b2c29bf47/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=20092&bt=10046&cs=0&ds=4&ft=gdpEk8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=13&rc=anRyN285cjNmeDMzZzczNEBpanRyN285cjNmeDMzZzczNEBxMF4zMmQ0aDZgLS1kMS9zYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00050000",
"url_list": [
"https://v19-cla.tiktokcdn.com/4a58ac0ea33a454f9b9f699f59df9dbf/67bb876e/video/tos/maliva/tos-maliva-v-0068c799-us/2083cc8a44054bb4873c0a3b2c29bf47/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=20092&bt=10046&cs=0&ds=4&ft=gdpEk8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=13&rc=anRyN285cjNmeDMzZzczNEBpanRyN285cjNmeDMzZzczNEBxMF4zMmQ0aDZgLS1kMS9zYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00050000",
"https://v16-cla.tiktokcdn.com/c547751d27d94d57db8c056bc821d582/67bb876e/video/tos/maliva/tos-maliva-v-0068c799-us/2083cc8a44054bb4873c0a3b2c29bf47/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=20092&bt=10046&cs=0&ds=4&ft=gdpEk8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=13&rc=anRyN285cjNmeDMzZzczNEBpanRyN285cjNmeDMzZzczNEBxMF4zMmQ0aDZgLS1kMS9zYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00050000",
"https://vas-useast2a.tiktokv.com/tiktok/v1/subtitle/url?aid=1233&format=webvtt&language=eng-US&sign=bd5a8b2a11c8d7f986097c3ec23137ee&version=1%3Abig_caption&vid=v12044gd0000cu9ck07og65l64ao3qtg"
],
"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/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW",
"url_list": [
"https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-cropcenter-q:300:400:q72.jpeg?dr=9232&nonce=5034&refresh_token=c286b8049c0c668fb68b6f9a764204f1&x-expires=1737835200&x-signature=VWyhB0mVUJn41Xw77L%2B6AE88TyI%3D&biz_tag=tt_video&idc=no1a&ps=933b5bde&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-cropcenter-q:300:400:q72.jpeg?dr=9232&nonce=10581&refresh_token=e4148a08e4d8e76ec5b3f541623f35e6&x-expires=1737835200&x-signature=DenYDBDcaD%2BfqtgX23EWppu2cag%3D&biz_tag=tt_video&idc=no1a&ps=933b5bde&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480"
],
"url_prefix": null,
"width": 720
},
"cover_is_custom": true,
"download_addr": {
"data_size": 16407044,
"file_cs": "c:0-74412-54d2",
"height": 720,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_list": [
"https://v45.tiktokcdn-eu.com/71d97b05a85ba7f6a521907ea8b70c38/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o4MWiUyaiPpoUgSQ4EAB1RZBLBEwPc76AIsK5/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2854&bt=1427&cs=0&ds=3&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=NzQ7PGk2ZWc3NDU0NGk0ZkBpanRyN285cjNmeDMzZzczNEAzLTQxYi81XzYxXjIuMS4tYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/cb0d1a093eb729125e4c4c822fd30728/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o4MWiUyaiPpoUgSQ4EAB1RZBLBEwPc76AIsK5/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2854&bt=1427&cs=0&ds=3&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=NzQ7PGk2ZWc3NDU0NGk0ZkBpanRyN285cjNmeDMzZzczNEAzLTQxYi81XzYxXjIuMS4tYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?video_id=v12044gd0000cu9ck07og65l64ao3qtg&line=0&watermark=1&logo_name=tiktok_m&source=AWEME_DETAIL&file_id=0c114f1151a24194bd8b23ef49780164&item_id=7463250363559218474&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmVlODYzYzllODI0MGNkZmMzNWJmODcxMTA1MTU2NTkw&shp=d05b14bd&shcp=-"
],
"url_prefix": null,
"width": 720
},
"download_no_watermark_addr": {
"data_size": 15708704,
"file_cs": "c:0-74412-54d2",
"file_hash": "932cd64c69ebd7eb79b2d50746403bb7",
"height": 1024,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_h264_540p_1399548",
"url_list": [
"https://v45.tiktokcdn-eu.com/5bd30ab204b45c52fd62b22d5479dc37/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/ogRBoFDWgiAfkqkYanXfA2Slz9QEIdDsDsl1Eg/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2732&bt=1366&cs=0&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=ZzZkZzNnOThoNDc5ZzxlOkBpanRyN285cjNmeDMzZzczNEAtYWEvY14vNjQxXl8xLjUyYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/5dab2335bad97d389ab7c2084a9da9cc/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/ogRBoFDWgiAfkqkYanXfA2Slz9QEIdDsDsl1Eg/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2732&bt=1366&cs=0&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=ZzZkZzNnOThoNDc5ZzxlOkBpanRyN285cjNmeDMzZzczNEAtYWEvY14vNjQxXl8xLjUyYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=578b194db6a4417e9526adf02ddad30d&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmQxNTE3MzdjNzI4Y2VjY2VkM2E3OGJmMjg2NDE2ZWJh&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"url_prefix": null,
"width": 576
},
"duration": 89793,
"dynamic_cover": {
"height": 720,
"uri": "tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW",
"url_list": [
"https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=71095&refresh_token=313f3112ea773326e61abd51cdd1ff2a&x-expires=1737835200&x-signature=3ZVIayK8aRRYiFdv5lCWvGvf5NU%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.image?dr=9229&nonce=92327&refresh_token=318b0a292d6dfea96bbb4fcd21df266f&x-expires=1737835200&x-signature=rfAa3XYt7qWYoEUZeQ81EFc92jY%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4RyrAARzCBvSEWSB1iiwVBZCyAITMAIEMfDJW~tplv-tiktokx-origin.jpeg?dr=9229&nonce=95422&refresh_token=6b945ce1b12e094cbde74590e1668ac5&x-expires=1737835200&x-signature=CFlirY1P0a67dTkR62095btWzrk%3D&biz_tag=tt_video&idc=no1a&ps=4f5296ae&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&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\":\"7.4\",\"LoudnessRangeEnd\":\"-10.4\",\"LoudnessRangeStart\":\"-17.8\",\"MaximumMomentaryLoudness\":\"-5.4\",\"MaximumShortTermLoudness\":\"-8.8\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Version\\\":2,\\\"Loudness\\\":-13.5,\\\"LoudnessRange\\\":7.4,\\\"LoudnessRangeStart\\\":-17.8,\\\"MaximumShortTermLoudness\\\":-8.8,\\\"Metrics\\\":{\\\"RMSStats\\\":{\\\"LRDiff\\\":0,\\\"LTotal\\\":-16.968,\\\"Peak\\\":0.331,\\\"RTotal\\\":-16.968},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.04,\\\"SingingRatio\\\":0,\\\"SpeechRatio\\\":0.89},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"Loud\\\":-13.4,\\\"LoudR\\\":7.3,\\\"LoudRE\\\":-10.2,\\\"LoudRS\\\":-17.5,\\\"MaxMomLoud\\\":-5.39,\\\"MaxSTLoud\\\":-9.09}},\\\"Cutoff\\\":{\\\"FCenL\\\":2769.37,\\\"FCenR\\\":2769.37,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.12,\\\"Spkr200G\\\":0.25},\\\"Loudness\\\":{\\\"Integrated\\\":-13.535},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":0}},\\\"LoudnessRangeEnd\\\":-10.4,\\\"MaximumMomentaryLoudness\\\":-5.4,\\\"Peak\\\":1}\",\"bright_ratio_mean\":\"0.1302\",\"brightness_mean\":\"135.2018\",\"diff_overexposure_ratio\":\"0.0829\",\"flight_id\":\"\",\"loudness\":\"-13.5\",\"overexposure_ratio_mean\":\"0.154\",\"peak\":\"1\",\"play_time_prob_dist\":\"[800,0.4237,7462.2842]\",\"qprf\":\"1.000\",\"sr_score\":\"1.000\",\"std_brightness\":\"18.0164\",\"vq_score\":\"65.04\"}",
"misc_download_addrs": "{\"suffix_scene\":{\"uri\":\"v12044gd0000cu9ck07og65l64ao3qtg\",\"url_list\":[\"https://v45.tiktokcdn-eu.com/f3c7ff07220cb4550e49ce232d75328e/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/oEimlAD0sSgOsEInskFfDBgf10M7o2QYRgDqEA/?a=1233\\u0026bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg\\u0026ch=0\\u0026cr=13\\u0026dr=0\\u0026er=0\\u0026lr=all\\u0026net=0\\u0026cd=0%7C0%7C0%7C\\u0026cv=1\\u0026br=2874\\u0026bt=1437\\u0026cs=0\\u0026ds=3\\u0026ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY\\u0026mime_type=video_mp4\\u0026qs=0\\u0026rc=NWhnOTNnNTgzOmQzaTozZkBpanRyN285cjNmeDMzZzczNEBeLWEzX2NhNTUxYjZgNi8yYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D\\u0026vvpl=1\\u0026l=202501242037412A7D0539A000DA01E8FC\\u0026btag=e00095000\",\"https://v15m.tiktokcdn-eu.com/dedacf505377287525fb4993329faf45/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/oEimlAD0sSgOsEInskFfDBgf10M7o2QYRgDqEA/?a=1233\\u0026bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg\\u0026ch=0\\u0026cr=13\\u0026dr=0\\u0026er=0\\u0026lr=all\\u0026net=0\\u0026cd=0%7C0%7C0%7C\\u0026cv=1\\u0026br=2874\\u0026bt=1437\\u0026cs=0\\u0026ds=3\\u0026ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY\\u0026mime_type=video_mp4\\u0026qs=0\\u0026rc=NWhnOTNnNTgzOmQzaTozZkBpanRyN285cjNmeDMzZzczNEBeLWEzX2NhNTUxYjZgNi8yYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D\\u0026vvpl=1\\u0026l=202501242037412A7D0539A000DA01E8FC\\u0026btag=e00090000\",\"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?video_id=v12044gd0000cu9ck07og65l64ao3qtg\\u0026line=0\\u0026watermark=1\\u0026logo_name=tiktok_end_sonic\\u0026source=AWEME_DETAIL\\u0026file_id=5c2097cf90ea478085d2fdb066dd0ea2\\u0026item_id=7463250363559218474\\u0026signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmI0MzM2ODA4ZDRlMzljYjg0OWI0ZDczNDBjMGExM2U4\\u0026shp=d05b14bd\\u0026shcp=-\"],\"width\":720,\"height\":720,\"data_size\":17266038,\"file_cs\":\"c:0-74412-54d2\",\"url_prefix\":null}}",
"need_set_token": false,
"origin_cover": {
"height": 720,
"uri": "tos-useast5-p-0068-tx/oEy5S4rXZ76RLBUrOQWAguNzEAMKiPBIBB1iI",
"url_list": [
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEy5S4rXZ76RLBUrOQWAguNzEAMKiPBIBB1iI~tplv-tiktokx-360p.webp?dr=1363&nonce=73015&refresh_token=f6f2cc7d77823cf44aa37d6477b2a173&x-expires=1737835200&x-signature=ySFpu%2BYZJKw81vJJsPCrwIZRycU%3D&biz_tag=tt_video&idc=no1a&ps=d97f9a4f&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p16-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEy5S4rXZ76RLBUrOQWAguNzEAMKiPBIBB1iI~tplv-tiktokx-360p.webp?dr=1363&nonce=26577&refresh_token=2a85acf08a66a00f294169e6d791a24c&x-expires=1737835200&x-signature=bW7s90RBNd8xQjzmb6UgK067loI%3D&biz_tag=tt_video&idc=no1a&ps=d97f9a4f&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480",
"https://p19-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEy5S4rXZ76RLBUrOQWAguNzEAMKiPBIBB1iI~tplv-tiktokx-360p.jpeg?dr=1363&nonce=63077&refresh_token=e0a24ef70f9b38e8a6086444a21438c7&x-expires=1737835200&x-signature=8qgddkCsOC2VAXwgnmpMtg6658c%3D&biz_tag=tt_video&idc=no1a&ps=d97f9a4f&s=AWEME_DETAIL&sc=cover&shcp=1d1a97fc&shp=d05b14bd&t=bacd0480"
],
"url_prefix": null,
"width": 720
},
"play_addr": {
"data_size": 15708704,
"file_cs": "c:0-74412-54d2",
"file_hash": "932cd64c69ebd7eb79b2d50746403bb7",
"height": 1024,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_h264_540p_1399548",
"url_list": [
"https://v45.tiktokcdn-eu.com/5bd30ab204b45c52fd62b22d5479dc37/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/ogRBoFDWgiAfkqkYanXfA2Slz9QEIdDsDsl1Eg/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2732&bt=1366&cs=0&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=ZzZkZzNnOThoNDc5ZzxlOkBpanRyN285cjNmeDMzZzczNEAtYWEvY14vNjQxXl8xLjUyYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/5dab2335bad97d389ab7c2084a9da9cc/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/ogRBoFDWgiAfkqkYanXfA2Slz9QEIdDsDsl1Eg/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2732&bt=1366&cs=0&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=ZzZkZzNnOThoNDc5ZzxlOkBpanRyN285cjNmeDMzZzczNEAtYWEvY14vNjQxXl8xLjUyYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=578b194db6a4417e9526adf02ddad30d&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmQxNTE3MzdjNzI4Y2VjY2VkM2E3OGJmMjg2NDE2ZWJh&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"url_prefix": null,
"width": 576
},
"play_addr_bytevc1": {
"data_size": 6874971,
"file_cs": "c:0-75525-e8f5",
"file_hash": "d362ea60a1c8106dc4292c380bf01e4d",
"height": 1024,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_bytevc1_540p_612517",
"url_list": [
"https://v45.tiktokcdn-eu.com/5837878732c464dbea3c3d3edf0851b9/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o8gBxAIrU5MiZdABK4zmW17FEPGESQBS6RjLi/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1196&bt=598&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=11&rc=NzQ4ZjM0NzU0NDdkNDU0OUBpanRyN285cjNmeDMzZzczNEA1YmNjMy1gXl4xLS82Li5eYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/a504d56d108d719fd3b955da9d753534/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/o8gBxAIrU5MiZdABK4zmW17FEPGESQBS6RjLi/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1196&bt=598&cs=2&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=11&rc=NzQ4ZjM0NzU0NDdkNDU0OUBpanRyN285cjNmeDMzZzczNEA1YmNjMy1gXl4xLS82Li5eYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=a61112912a0441a1a2c40160fcf5e184&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmU1YWNmZmFiYzhjN2M5NGIxODkzYTUyODQ0ZTY1MGZl&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"url_prefix": null,
"width": 576
},
"play_addr_h264": {
"data_size": 15708704,
"file_cs": "c:0-74412-54d2",
"file_hash": "932cd64c69ebd7eb79b2d50746403bb7",
"height": 1024,
"uri": "v12044gd0000cu9ck07og65l64ao3qtg",
"url_key": "v12044gd0000cu9ck07og65l64ao3qtg_h264_540p_1399548",
"url_list": [
"https://v45.tiktokcdn-eu.com/5bd30ab204b45c52fd62b22d5479dc37/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/ogRBoFDWgiAfkqkYanXfA2Slz9QEIdDsDsl1Eg/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2732&bt=1366&cs=0&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=ZzZkZzNnOThoNDc5ZzxlOkBpanRyN285cjNmeDMzZzczNEAtYWEvY14vNjQxXl8xLjUyYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00095000",
"https://v15m.tiktokcdn-eu.com/5dab2335bad97d389ab7c2084a9da9cc/67954bee/video/tos/maliva/tos-maliva-ve-0068c799-us/ogRBoFDWgiAfkqkYanXfA2Slz9QEIdDsDsl1Eg/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2732&bt=1366&cs=0&ds=6&ft=td_Lr8QLodzR12Nvy7iGeIxRk6z_XF_45SY&mime_type=video_mp4&qs=0&rc=ZzZkZzNnOThoNDc5ZzxlOkBpanRyN285cjNmeDMzZzczNEAtYWEvY14vNjQxXl8xLjUyYSNxMF4zMmQ0aDZgLS1kMS9zcw%3D%3D&vvpl=1&l=202501242037412A7D0539A000DA01E8FC&btag=e00090000",
"https://api16-normal-no1a.tiktokv.eu/aweme/v1/play/?faid=1233&file_id=578b194db6a4417e9526adf02ddad30d&is_play_url=1&item_id=7463250363559218474&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmQxNTE3MzdjNzI4Y2VjY2VkM2E3OGJmMjg2NDE2ZWJh&source=AWEME_DETAIL&video_id=v12044gd0000cu9ck07og65l64ao3qtg"
],
"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_eligible_for_commission": true,
"is_paid_partnership": false,
"create_time_utc": "2025-09-03T18:37:38.000Z",
"url": "https://www.tiktok.com/@branttakes/video/7545933721589910798",
"shop_product_url": "https://www.tiktok.com/shop/pdp/1729494515984797858"
},
"extra": {
"fatal_item_ids": [],
"logid": "202501242037412A7D0539A000DA01E8FC",
"now": 1737751061000
},
"log_pb": {
"impr_id": "202501242037412A7D0539A000DA01E8FC"
},
"status_code": 0,
"status_msg": "",
"transcript": "WEBVTT\n\n\n00:00:00.140 --> 00:00:04.020\nAll right. Pizza review time"
}
Check that your response includes the expected fields:
aweme_detail
(object)extra
(object)log_pb
(object)status_code
(number)status_msg
(string)Implement comprehensive error handling and retry logic for failed requests. Log errors properly for debugging.
Cache responses when possible to reduce API calls and improve performance. Consider data freshness requirements.
Never expose your API key in client-side code. Use environment variables and secure key management practices.
When scraping multiple videos, consider batching requests to maximize throughput while staying within rate limits.
Use asynchronous processing in Python to handle multiple requests concurrently and improve overall performance.
Analyze TikTok videos to understand market trends, competitor analysis, and audience insights.
Track performance metrics, engagement rates, and content trends across TikTok videos.
Identify potential customers and business opportunities throughTikTok data analysis.
Check your API key is correct and properly formatted in the x-api-key header.
You ran out of credits and need to buy more.
The resource might not exist or be private.
Temporary server issue. Implement retry logic with exponential backoff.
ScrapeCreators offers 100 free API calls to get started. After that, pricing starts at $10 for 5k requests with volume discounts available.
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.
There is no rate limit! So you can scrape as fast as you want!
All API responses are returned in JSON format, making it easy to integrate with any programming language or application.
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.
For large datasets, implement pagination, use streaming responses where available, and consider storing data in a database for efficient querying.
Get started with 100 free API calls. No credit card required.