@scrapecreators/cli 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api-config/apis.js +25489 -9376
- package/api-config/github-apis.js +991 -0
- package/api-config/instagram-apis.js +2495 -2474
- package/api-config/tiktok-apis.js +1131 -770
- package/api-config/tiktok-shop-apis.js +152 -153
- package/package.json +3 -3
|
@@ -84,6 +84,30 @@ export const tiktokBaseApis = {
|
|
|
84
84
|
itemList: [],
|
|
85
85
|
},
|
|
86
86
|
},
|
|
87
|
+
{
|
|
88
|
+
name: "Profile Region",
|
|
89
|
+
method: "GET",
|
|
90
|
+
description: "Gets the region/country code for a TikTok profile.",
|
|
91
|
+
fullDescription:
|
|
92
|
+
"Returns the TikTok region code for a public profile, like `US` for United States or `MX` for Mexico.",
|
|
93
|
+
path: "/v1/tiktok/profile/region",
|
|
94
|
+
params: [
|
|
95
|
+
{
|
|
96
|
+
name: "handle",
|
|
97
|
+
type: "string",
|
|
98
|
+
required: true,
|
|
99
|
+
description: "TikTok handle",
|
|
100
|
+
placeholder: "stoolpresidente",
|
|
101
|
+
},
|
|
102
|
+
],
|
|
103
|
+
sampleResponse: {
|
|
104
|
+
success: true,
|
|
105
|
+
credits: 100,
|
|
106
|
+
handle: "stoolpresidente",
|
|
107
|
+
profile_url: "https://www.tiktok.com/@stoolpresidente",
|
|
108
|
+
region: "US",
|
|
109
|
+
},
|
|
110
|
+
},
|
|
87
111
|
{
|
|
88
112
|
name: "User's Audience Demographics",
|
|
89
113
|
method: "GET",
|
|
@@ -3764,6 +3788,14 @@ export const tiktokBaseApis = {
|
|
|
3764
3788
|
description: "Set to true to get a trimmed response",
|
|
3765
3789
|
placeholder: false,
|
|
3766
3790
|
},
|
|
3791
|
+
{
|
|
3792
|
+
name: "download_media",
|
|
3793
|
+
type: "boolean",
|
|
3794
|
+
required: false,
|
|
3795
|
+
description: "Set to true to download the video/images and get back permanent Supabase URLs. Costs 10 credits if media is found, 1 credit otherwise.",
|
|
3796
|
+
placeholder: false,
|
|
3797
|
+
credits: 10,
|
|
3798
|
+
},
|
|
3767
3799
|
],
|
|
3768
3800
|
responseFields: [
|
|
3769
3801
|
{
|
|
@@ -5818,7 +5850,7 @@ export const tiktokBaseApis = {
|
|
|
5818
5850
|
method: "GET",
|
|
5819
5851
|
description: "Scrapes replies to a TikTok comment",
|
|
5820
5852
|
fullDescription: "Fetches replies to a specific TikTok comment by its ID. Returns `comments`, an array of comment objects each with `text`, `user` info, and `create_time`. Paginate with `cursor` from the previous response.",
|
|
5821
|
-
path: "/v1/tiktok/comment/replies",
|
|
5853
|
+
path: "/v1/tiktok/video/comment/replies",
|
|
5822
5854
|
paginationField: "cursor",
|
|
5823
5855
|
params: [
|
|
5824
5856
|
{
|
|
@@ -10684,8 +10716,8 @@ export const tiktokBaseApis = {
|
|
|
10684
10716
|
{
|
|
10685
10717
|
name: "Search by Hashtag",
|
|
10686
10718
|
method: "GET",
|
|
10687
|
-
description: "Scrapes TikTok videos by hashtag",
|
|
10688
|
-
fullDescription: "Searches for TikTok videos under a specific hashtag — useful for finding content by topic or trend. Returns `aweme_list`, an array of video objects each with `aweme_id`, `desc` (caption), `statistics` (play_count, digg_count/likes, comment_count, share_count), `video` info, and `author` details. Paginate with `cursor` from the previous response.",
|
|
10719
|
+
description: "Scrapes TikTok videos by hashtag. Note: TikTok can return duplicate results for this search. Sorry about that — it looks like a TikTok-side thing, so we don't have control over it.",
|
|
10720
|
+
fullDescription: "Searches for TikTok videos under a specific hashtag — useful for finding content by topic or trend. Returns `aweme_list`, an array of video objects each with `aweme_id`, `desc` (caption), `statistics` (play_count, digg_count/likes, comment_count, share_count), `video` info, and `author` details. Paginate with `cursor` from the previous response. TikTok may return duplicate results.",
|
|
10689
10721
|
path: "/v1/tiktok/search/hashtag",
|
|
10690
10722
|
paginationField: "cursor",
|
|
10691
10723
|
sampleResponse: {
|
|
@@ -12495,8 +12527,8 @@ export const tiktokBaseApis = {
|
|
|
12495
12527
|
{
|
|
12496
12528
|
name: "Search by Keyword",
|
|
12497
12529
|
method: "GET",
|
|
12498
|
-
description: "Scrapes TikTok videos matching a keyword",
|
|
12499
|
-
fullDescription: "Searches for TikTok videos by keyword or phrase — the general video search across all of TikTok. Returns `search_item_list`, an array of objects each containing `aweme_info` with `aweme_id`, `desc` (caption), `statistics` (play_count, digg_count/likes, comment_count, share_count), `video` info, and `author` details. Paginate with `cursor`.",
|
|
12530
|
+
description: "Scrapes TikTok videos matching a keyword. Note: TikTok can return duplicate results for this search. Sorry about that — it looks like a TikTok-side thing, so we don't have control over it.",
|
|
12531
|
+
fullDescription: "Searches for TikTok videos by keyword or phrase — the general video search across all of TikTok. Returns `search_item_list`, an array of objects each containing `aweme_info` with `aweme_id`, `desc` (caption), `statistics` (play_count, digg_count/likes, comment_count, share_count), `video` info, and `author` details. Paginate with `cursor`. TikTok may return duplicate results.",
|
|
12500
12532
|
path: "/v1/tiktok/search/keyword",
|
|
12501
12533
|
paginationField: "cursor",
|
|
12502
12534
|
sampleResponse: {
|
|
@@ -14468,8 +14500,8 @@ export const tiktokBaseApis = {
|
|
|
14468
14500
|
name: "Top Search",
|
|
14469
14501
|
method: "GET",
|
|
14470
14502
|
description:
|
|
14471
|
-
"There is a 'Top' Search in TikTok and this is that. You can get Photo Carousels and Videos. Whereas with just the Keyword Search, you can only get Videos.",
|
|
14472
|
-
fullDescription: "Searches TikTok's 'Top' results by query — returns both videos and photo carousels, unlike keyword search which only returns videos. Returns `items`, an array of objects each with `id`, `desc` (caption), `content_type` (video or photo carousel), `statistics` (play_count, digg_count/likes, comment_count, share_count), `video` info, and `images` for carousels. Paginate with `cursor`.",
|
|
14503
|
+
"There is a 'Top' Search in TikTok and this is that. You can get Photo Carousels and Videos. Whereas with just the Keyword Search, you can only get Videos. Note: TikTok can return duplicate results for this search. Sorry about that — it looks like a TikTok-side thing, so we don't have control over it.",
|
|
14504
|
+
fullDescription: "Searches TikTok's 'Top' results by query — returns both videos and photo carousels, unlike keyword search which only returns videos. Returns `items`, an array of objects each with `id`, `desc` (caption), `content_type` (video or photo carousel), `statistics` (play_count, digg_count/likes, comment_count, share_count), `video` info, and `images` for carousels. Paginate with `cursor`. TikTok may return duplicate results.",
|
|
14473
14505
|
path: "/v1/tiktok/search/top",
|
|
14474
14506
|
params: [
|
|
14475
14507
|
{
|
|
@@ -14528,707 +14560,1036 @@ export const tiktokBaseApis = {
|
|
|
14528
14560
|
},
|
|
14529
14561
|
],
|
|
14530
14562
|
sampleResponse: {
|
|
14531
|
-
success: true,
|
|
14532
|
-
|
|
14563
|
+
"success": true,
|
|
14564
|
+
"credits_remaining": 49999301547,
|
|
14565
|
+
"items": [
|
|
14533
14566
|
{
|
|
14534
|
-
id: "
|
|
14535
|
-
desc: "
|
|
14536
|
-
content_type: "
|
|
14537
|
-
create_time: "
|
|
14538
|
-
desc_language: "
|
|
14539
|
-
region: "US",
|
|
14540
|
-
is_top: 0,
|
|
14541
|
-
statistics: {
|
|
14542
|
-
aweme_id: "
|
|
14543
|
-
collect_count:
|
|
14544
|
-
comment_count:
|
|
14545
|
-
digg_count:
|
|
14546
|
-
download_count:
|
|
14547
|
-
forward_count: 0,
|
|
14548
|
-
lose_comment_count: 0,
|
|
14549
|
-
lose_count: 0,
|
|
14550
|
-
play_count:
|
|
14551
|
-
repost_count: 0,
|
|
14552
|
-
share_count:
|
|
14553
|
-
whatsapp_share_count:
|
|
14567
|
+
"id": "7620673421353012494",
|
|
14568
|
+
"desc": "#fyp #dog #funny #humor #blowthisup? ",
|
|
14569
|
+
"content_type": "multi_photo",
|
|
14570
|
+
"create_time": "2026-03-24T04:25:45.000Z",
|
|
14571
|
+
"desc_language": "un",
|
|
14572
|
+
"region": "US",
|
|
14573
|
+
"is_top": 0,
|
|
14574
|
+
"statistics": {
|
|
14575
|
+
"aweme_id": "7620673421353012494",
|
|
14576
|
+
"collect_count": 75335,
|
|
14577
|
+
"comment_count": 2555,
|
|
14578
|
+
"digg_count": 570679,
|
|
14579
|
+
"download_count": 1026,
|
|
14580
|
+
"forward_count": 0,
|
|
14581
|
+
"lose_comment_count": 0,
|
|
14582
|
+
"lose_count": 0,
|
|
14583
|
+
"play_count": 2674660,
|
|
14584
|
+
"repost_count": 0,
|
|
14585
|
+
"share_count": 146329,
|
|
14586
|
+
"whatsapp_share_count": 430
|
|
14587
|
+
},
|
|
14588
|
+
"video": {
|
|
14589
|
+
"ai_dynamic_cover": {
|
|
14590
|
+
"data_size": 0,
|
|
14591
|
+
"height": 814,
|
|
14592
|
+
"uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
|
|
14593
|
+
"url_list": [
|
|
14594
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
|
|
14595
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
|
|
14596
|
+
],
|
|
14597
|
+
"url_prefix": null,
|
|
14598
|
+
"width": 640
|
|
14599
|
+
},
|
|
14600
|
+
"ai_dynamic_cover_bak": {
|
|
14601
|
+
"data_size": 0,
|
|
14602
|
+
"height": 814,
|
|
14603
|
+
"uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
|
|
14604
|
+
"url_list": [
|
|
14605
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
|
|
14606
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
|
|
14607
|
+
],
|
|
14608
|
+
"url_prefix": null,
|
|
14609
|
+
"width": 640
|
|
14610
|
+
},
|
|
14611
|
+
"big_thumbs": [],
|
|
14612
|
+
"bit_rate": [],
|
|
14613
|
+
"bit_rate_audio": [],
|
|
14614
|
+
"cdn_url_expired": 0,
|
|
14615
|
+
"cla_info": {
|
|
14616
|
+
"caption_infos": null,
|
|
14617
|
+
"captions_type": 0,
|
|
14618
|
+
"creator_edited_caption_id": 0,
|
|
14619
|
+
"enable_auto_caption": 0,
|
|
14620
|
+
"has_original_audio": 0,
|
|
14621
|
+
"hide_original_caption": false,
|
|
14622
|
+
"is_author_dubbing_qualified": false,
|
|
14623
|
+
"no_caption_reason": 3,
|
|
14624
|
+
"no_caption_reason_v2": 3,
|
|
14625
|
+
"vertical_positions": null
|
|
14626
|
+
},
|
|
14627
|
+
"cover": {
|
|
14628
|
+
"data_size": 0,
|
|
14629
|
+
"height": 814,
|
|
14630
|
+
"uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
|
|
14631
|
+
"url_list": [
|
|
14632
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?biz_tag=musically_general.pics_cover&dr=12229&idc=useast8&ps=d5b8ac02&refresh_token=b1c65c7d&s=SEARCH&sc=cover&shcp=0e6dc556&shp=d05b14bd&t=5897f7ec&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D",
|
|
14633
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?biz_tag=musically_general.pics_cover&dr=12229&idc=useast8&ps=d5b8ac02&refresh_token=2acf3c7d&s=SEARCH&sc=cover&shcp=0e6dc556&shp=d05b14bd&t=5897f7ec&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D"
|
|
14634
|
+
],
|
|
14635
|
+
"url_prefix": null,
|
|
14636
|
+
"width": 640
|
|
14637
|
+
},
|
|
14638
|
+
"download_addr": {
|
|
14639
|
+
"height": 720,
|
|
14640
|
+
"uri": "",
|
|
14641
|
+
"url_list": [],
|
|
14642
|
+
"url_prefix": null,
|
|
14643
|
+
"width": 720
|
|
14644
|
+
},
|
|
14645
|
+
"duration": 0,
|
|
14646
|
+
"dynamic_cover": {
|
|
14647
|
+
"data_size": 0,
|
|
14648
|
+
"height": 814,
|
|
14649
|
+
"uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
|
|
14650
|
+
"url_list": [
|
|
14651
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
|
|
14652
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
|
|
14653
|
+
],
|
|
14654
|
+
"url_prefix": null,
|
|
14655
|
+
"width": 640
|
|
14656
|
+
},
|
|
14657
|
+
"has_watermark": false,
|
|
14658
|
+
"height": 0,
|
|
14659
|
+
"is_bytevc1": 0,
|
|
14660
|
+
"is_callback": false,
|
|
14661
|
+
"meta": "{\"Loudness\":\"-7.8\",\"LoudnessRange\":\"2\",\"LoudnessRangeEnd\":\"-6.9\",\"LoudnessRangeStart\":\"-8.9\",\"MaximumMomentaryLoudness\":\"-5.8\",\"MaximumShortTermLoudness\":\"-6.6\",\"Peak\":\"1\",\"Version\":\"1\",\"VolumeInfoJson\":\"{\\\"LoudnessRangeStart\\\":-8.9,\\\"MaximumMomentaryLoudness\\\":-5.8,\\\"MaximumShortTermLoudness\\\":-6.6,\\\"Loudness\\\":-7.8,\\\"LoudnessRange\\\":2,\\\"LoudnessRangeEnd\\\":-6.9,\\\"Peak\\\":1,\\\"Version\\\":1}\",\"loudness\":\"-7.8\",\"peak\":\"1\"}",
|
|
14662
|
+
"need_set_token": false,
|
|
14663
|
+
"origin_cover": {
|
|
14664
|
+
"data_size": 0,
|
|
14665
|
+
"height": 814,
|
|
14666
|
+
"uri": "tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f",
|
|
14667
|
+
"url_list": [
|
|
14668
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.heic?dr=12229&refresh_token=b1c65c7d&x-expires=1777644000&x-signature=%2Fud5EfXS%2Fh0MoLcb%2BlOTtddSxt4%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover",
|
|
14669
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-cover:640:0:q72.jpeg?dr=12229&refresh_token=2acf3c7d&x-expires=1777644000&x-signature=xvYB7fc30Ya%2FEdIYlSwwTzMBcVo%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=cover"
|
|
14670
|
+
],
|
|
14671
|
+
"url_prefix": null,
|
|
14672
|
+
"width": 640
|
|
14673
|
+
},
|
|
14674
|
+
"play_addr": {
|
|
14675
|
+
"height": 720,
|
|
14676
|
+
"uri": "https://v16m.tiktokcdn-us.com/c7621dcf09b9341fd297a5fde52650eb/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
|
|
14677
|
+
"url_key": "7110642235061947141",
|
|
14678
|
+
"url_list": [
|
|
14679
|
+
"https://v16m.tiktokcdn-us.com/c7621dcf09b9341fd297a5fde52650eb/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
|
|
14680
|
+
"https://v19.tiktokcdn-us.com/94872e60a5409ebc2062610f9ae5ba1c/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
|
|
14681
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v09942g40000can16sjc77u15pkmpv2g&line=0&is_play_url=1&source=SEARCH&file_id=5caf815dde7542f4ae67983e5b583a70&item_id=7110642235061947141&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmIwYzkyNDZkMjc2YTc2NDJhOTUxNjRhMGI2Yzc0NzBj&shp=d05b14bd&shcp=-"
|
|
14682
|
+
],
|
|
14683
|
+
"url_prefix": null,
|
|
14684
|
+
"width": 720
|
|
14685
|
+
},
|
|
14686
|
+
"ratio": "720p",
|
|
14687
|
+
"tags": null,
|
|
14688
|
+
"width": 0
|
|
14554
14689
|
},
|
|
14555
|
-
|
|
14556
|
-
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
|
|
14560
|
-
|
|
14561
|
-
|
|
14562
|
-
|
|
14690
|
+
"author": {
|
|
14691
|
+
"accept_private_policy": false,
|
|
14692
|
+
"account_labels": null,
|
|
14693
|
+
"ad_cover_url": null,
|
|
14694
|
+
"advance_feature_item_order": null,
|
|
14695
|
+
"advanced_feature_info": null,
|
|
14696
|
+
"authority_status": 0,
|
|
14697
|
+
"avatar_168x168": {
|
|
14698
|
+
"height": 720,
|
|
14699
|
+
"uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
|
|
14700
|
+
"url_list": [
|
|
14701
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=6a1adba9&x-expires=1776434400&x-signature=RHwVN7IVaYS3wYc93K3Xvt6xHIg%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14702
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=93102099&x-expires=1776434400&x-signature=lGDVnfSsrB%2FBaCVxtfNsun3Dt%2B4%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14703
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=5ed6090b&x-expires=1776434400&x-signature=d2E%2B4Ce81XTXA8yZA1AcbJoTI4A%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
14563
14704
|
],
|
|
14564
|
-
url_prefix: null,
|
|
14705
|
+
"url_prefix": null,
|
|
14706
|
+
"width": 720
|
|
14565
14707
|
},
|
|
14566
|
-
|
|
14567
|
-
|
|
14568
|
-
|
|
14569
|
-
|
|
14570
|
-
"https://
|
|
14571
|
-
"https://
|
|
14708
|
+
"avatar_300x300": {
|
|
14709
|
+
"height": 720,
|
|
14710
|
+
"uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
|
|
14711
|
+
"url_list": [
|
|
14712
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=59698e3f&x-expires=1776434400&x-signature=IGQFUwoqQ5%2FQs%2BE%2F6IxBe%2Bla%2FMs%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14713
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9852293e&x-expires=1776434400&x-signature=c3Z9nii6k9P8xbIss3AHhJow6Jk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14714
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=a5068d5c&x-expires=1776434400&x-signature=ilNSB9%2FxyZd%2Fbq2VOkxo9TpYOGE%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
14572
14715
|
],
|
|
14573
|
-
url_prefix: null,
|
|
14716
|
+
"url_prefix": null,
|
|
14717
|
+
"width": 720
|
|
14574
14718
|
},
|
|
14575
|
-
|
|
14576
|
-
|
|
14577
|
-
|
|
14578
|
-
|
|
14579
|
-
"https://
|
|
14580
|
-
"https://
|
|
14719
|
+
"avatar_larger": {
|
|
14720
|
+
"height": 720,
|
|
14721
|
+
"uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
|
|
14722
|
+
"url_list": [
|
|
14723
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=071322d1&x-expires=1776434400&x-signature=n6Y%2FOeq3wWDaJErvVXX2deeZ%2BS8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14724
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=980095bc&x-expires=1776434400&x-signature=BQBu6nCU7f3zbLF7qrPQd3qg0HA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14725
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=f905de08&x-expires=1776434400&x-signature=%2BMHh49esS0zS9GOntxzisg%2BlQsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
14581
14726
|
],
|
|
14582
|
-
url_prefix: null,
|
|
14727
|
+
"url_prefix": null,
|
|
14728
|
+
"width": 720
|
|
14583
14729
|
},
|
|
14584
|
-
|
|
14585
|
-
|
|
14730
|
+
"avatar_medium": {
|
|
14731
|
+
"height": 720,
|
|
14732
|
+
"uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
|
|
14733
|
+
"url_list": [
|
|
14734
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=316847ed&x-expires=1776434400&x-signature=7wRGo7gdVGUeqGWYRh037aNRPsQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14735
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=181c1e3b&x-expires=1776434400&x-signature=y0b1k4o1Y0cu4kXMK1p%2FdnqwBDE%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
14736
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=22c89b5d&x-expires=1776434400&x-signature=OT40ejVM6nHje4DakBB%2F7wTA8%2BE%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
14737
|
+
],
|
|
14738
|
+
"url_prefix": null,
|
|
14739
|
+
"width": 720
|
|
14740
|
+
},
|
|
14741
|
+
"avatar_thumb": {
|
|
14742
|
+
"height": 720,
|
|
14743
|
+
"uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
|
|
14744
|
+
"url_list": [
|
|
14745
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.pics_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=17c8dbe7&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=kMEbPxDChItSQ6ipFx2PmdSKpVw%3D",
|
|
14746
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.pics_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=ea953e76&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=v%2BSVGBheah9Ii3Y0sVZdoGZ5u9c%3D",
|
|
14747
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_general.pics_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=f834f33a&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=REklHLgaUDx6njVvktEFyGd7vhY%3D"
|
|
14748
|
+
],
|
|
14749
|
+
"url_prefix": null,
|
|
14750
|
+
"width": 720
|
|
14751
|
+
},
|
|
14752
|
+
"avatar_uri": "tos-useast5-avt-0068-tx/09640951ebb9ad9f6ae1ae283d7b4708",
|
|
14753
|
+
"aweme_count": 0,
|
|
14754
|
+
"bold_fields": null,
|
|
14755
|
+
"can_message_follow_status_list": [2],
|
|
14756
|
+
"can_set_geofencing": null,
|
|
14757
|
+
"cha_list": null,
|
|
14758
|
+
"comment_filter_status": 0,
|
|
14759
|
+
"comment_setting": 0,
|
|
14760
|
+
"commerce_user_level": 0,
|
|
14761
|
+
"cover_url": null,
|
|
14762
|
+
"custom_verify": "",
|
|
14763
|
+
"cv_level": "",
|
|
14764
|
+
"download_prompt_ts": 0,
|
|
14765
|
+
"enabled_filter_all_comments": false,
|
|
14766
|
+
"enterprise_verify_reason": "",
|
|
14767
|
+
"events": null,
|
|
14768
|
+
"fake_data_info": {},
|
|
14769
|
+
"fb_expire_time": 0,
|
|
14770
|
+
"follow_status": 0,
|
|
14771
|
+
"follower_count": 1680,
|
|
14772
|
+
"follower_status": 0,
|
|
14773
|
+
"followers_detail": null,
|
|
14774
|
+
"following_count": 504,
|
|
14775
|
+
"friends_status": 0,
|
|
14776
|
+
"geofencing": null,
|
|
14777
|
+
"hide_search": true,
|
|
14778
|
+
"homepage_bottom_toast": null,
|
|
14779
|
+
"ins_id": "",
|
|
14780
|
+
"is_ad_fake": false,
|
|
14781
|
+
"is_block": false,
|
|
14782
|
+
"is_discipline_member": false,
|
|
14783
|
+
"is_mute": 0,
|
|
14784
|
+
"is_mute_lives": 0,
|
|
14785
|
+
"is_mute_non_story_post": 0,
|
|
14786
|
+
"is_mute_story": 0,
|
|
14787
|
+
"is_star": false,
|
|
14788
|
+
"item_list": null,
|
|
14789
|
+
"live_agreement": 0,
|
|
14790
|
+
"live_commerce": false,
|
|
14791
|
+
"live_verify": 0,
|
|
14792
|
+
"mention_status": 1,
|
|
14793
|
+
"mutual_relation_avatars": null,
|
|
14794
|
+
"name_field": "nickname",
|
|
14795
|
+
"need_points": null,
|
|
14796
|
+
"need_recommend": 0,
|
|
14797
|
+
"nickname": "Charlieedits_3",
|
|
14798
|
+
"platform_sync_info": null,
|
|
14799
|
+
"prevent_download": false,
|
|
14800
|
+
"relative_users": null,
|
|
14801
|
+
"reply_with_video_flag": 3,
|
|
14802
|
+
"room_id": 0,
|
|
14803
|
+
"search_highlight": null,
|
|
14804
|
+
"search_user_desc": "idk_kid712",
|
|
14805
|
+
"search_user_name": "Charlieedits_3",
|
|
14806
|
+
"sec_uid": "MS4wLjABAAAAM0TXLbdfLgi-iJzbjgNBLMX9tg4j4mkEbRbtiXHDu3nwxlfQHUnwDLC4Agi8iL0w",
|
|
14807
|
+
"secret": 0,
|
|
14808
|
+
"shield_comment_notice": 0,
|
|
14809
|
+
"shield_digg_notice": 0,
|
|
14810
|
+
"shield_edit_field_info": null,
|
|
14811
|
+
"shield_follow_notice": 0,
|
|
14812
|
+
"short_id": "0",
|
|
14813
|
+
"show_image_bubble": false,
|
|
14814
|
+
"special_account": {
|
|
14815
|
+
"special_account_list": null
|
|
14816
|
+
},
|
|
14817
|
+
"special_lock": 1,
|
|
14818
|
+
"status": 1,
|
|
14819
|
+
"stitch_setting": 1,
|
|
14820
|
+
"story_status": 0,
|
|
14821
|
+
"total_favorited": 0,
|
|
14822
|
+
"type_label": null,
|
|
14823
|
+
"uid": "7453893356243780650",
|
|
14824
|
+
"unique_id": "idk_kid712",
|
|
14825
|
+
"user_canceled": false,
|
|
14826
|
+
"user_mode": 1,
|
|
14827
|
+
"user_now_pack_info": {},
|
|
14828
|
+
"user_period": 0,
|
|
14829
|
+
"user_profile_guide": null,
|
|
14830
|
+
"user_rate": 1,
|
|
14831
|
+
"user_spark_info": {},
|
|
14832
|
+
"user_tags": null,
|
|
14833
|
+
"verification_type": 0,
|
|
14834
|
+
"verify_info": "",
|
|
14835
|
+
"video_icon": {
|
|
14836
|
+
"height": 720,
|
|
14837
|
+
"uri": "",
|
|
14838
|
+
"url_list": [],
|
|
14839
|
+
"url_prefix": null,
|
|
14840
|
+
"width": 720
|
|
14841
|
+
},
|
|
14842
|
+
"white_cover_url": null,
|
|
14843
|
+
"with_commerce_entry": false,
|
|
14844
|
+
"with_shop_entry": false
|
|
14845
|
+
},
|
|
14846
|
+
"images": [
|
|
14847
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast5-i-photomode-tx/d986e70321f24c6f84a0ceca0aa3487f~tplv-photomode-image-v1:q70.webp?dr=8793&refresh_token=4f303086&x-expires=1777644000&x-signature=i2s38bIqG87eWf6DIfKDjn5LYMU%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=0e6dc556&idc=useast8&s=SEARCH&biz_tag=tt_photomode&sc=image"
|
|
14848
|
+
],
|
|
14849
|
+
"music": {
|
|
14850
|
+
"author": "𝐙",
|
|
14851
|
+
"duration": 16,
|
|
14852
|
+
"id": 7110642235061947000,
|
|
14853
|
+
"title": "original sound - al7a.z",
|
|
14854
|
+
"play_url": "https://v16m.tiktokcdn-us.com/c7621dcf09b9341fd297a5fde52650eb/69ea3264/video/tos/useast5/tos-useast5-ve-27dcd7c799-tx/oIFNlEJniBUCfwZeDIIhwCIXUBLDbrFQNJMOCy/?a=1233&bti=bmQxZmR2bndsQGo0QHM6OjZAYG1lb2IrbGhxYCMucCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=M2Q7ZWg7Omg3NThoZzRpZkBpanlwczQ6ZnY0ZDMzNzU8M0A0MDIyMDYzXmMxNGEyNV4yYSMvbWgycjRnM2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e000b8000&shp=d05b14bd&shcp=-",
|
|
14855
|
+
"matched_song": {
|
|
14856
|
+
"author": "Soulja Boy Tell'em",
|
|
14857
|
+
"id": "6732704090041616385",
|
|
14858
|
+
"title": "Crank That (Soulja Boy)"
|
|
14859
|
+
}
|
|
14860
|
+
},
|
|
14861
|
+
"is_eligible_for_commission": false,
|
|
14862
|
+
"is_paid_partnership": false,
|
|
14863
|
+
"is_ad": false,
|
|
14864
|
+
"url": "https://www.tiktok.com/@idk_kid712/photo/7620673421353012494",
|
|
14865
|
+
"shop_product_url": null
|
|
14866
|
+
},
|
|
14867
|
+
{
|
|
14868
|
+
"id": "7629303091011079455",
|
|
14869
|
+
"desc": "The funny fish fails 🐟 #fyp #foryou #fish #funny #funnyvideos #funnymoments #viral #viralvideo ",
|
|
14870
|
+
"content_type": "video",
|
|
14871
|
+
"create_time": "2026-04-16T10:32:45.000Z",
|
|
14872
|
+
"desc_language": "en",
|
|
14873
|
+
"region": "US",
|
|
14874
|
+
"is_top": 0,
|
|
14875
|
+
"statistics": {
|
|
14876
|
+
"aweme_id": "7629303091011079455",
|
|
14877
|
+
"collect_count": 3,
|
|
14878
|
+
"comment_count": 4,
|
|
14879
|
+
"digg_count": 45,
|
|
14880
|
+
"download_count": 0,
|
|
14881
|
+
"forward_count": 0,
|
|
14882
|
+
"lose_comment_count": 0,
|
|
14883
|
+
"lose_count": 0,
|
|
14884
|
+
"play_count": 1383,
|
|
14885
|
+
"repost_count": 0,
|
|
14886
|
+
"share_count": 6,
|
|
14887
|
+
"whatsapp_share_count": 0
|
|
14888
|
+
},
|
|
14889
|
+
"video": {
|
|
14890
|
+
"CoverTsp": 53.84764192139738,
|
|
14891
|
+
"ai_dynamic_cover": {
|
|
14892
|
+
"uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
|
|
14893
|
+
"url_list": [
|
|
14894
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
|
|
14895
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
|
|
14896
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH"
|
|
14897
|
+
],
|
|
14898
|
+
"url_prefix": null
|
|
14899
|
+
},
|
|
14900
|
+
"ai_dynamic_cover_bak": {
|
|
14901
|
+
"uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
|
|
14902
|
+
"url_list": [
|
|
14903
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
|
|
14904
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
|
|
14905
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH"
|
|
14906
|
+
],
|
|
14907
|
+
"url_prefix": null
|
|
14908
|
+
},
|
|
14909
|
+
"animated_cover": {
|
|
14910
|
+
"uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
|
|
14911
|
+
"url_list": [
|
|
14912
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
|
|
14913
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH",
|
|
14914
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=SEARCH"
|
|
14915
|
+
],
|
|
14916
|
+
"url_prefix": null
|
|
14917
|
+
},
|
|
14918
|
+
"big_thumbs": [
|
|
14586
14919
|
{
|
|
14587
|
-
|
|
14588
|
-
|
|
14589
|
-
|
|
14590
|
-
|
|
14591
|
-
|
|
14592
|
-
|
|
14593
|
-
|
|
14594
|
-
|
|
14595
|
-
|
|
14596
|
-
|
|
14597
|
-
|
|
14598
|
-
|
|
14599
|
-
|
|
14600
|
-
|
|
14601
|
-
|
|
14602
|
-
|
|
14603
|
-
|
|
14604
|
-
|
|
14605
|
-
|
|
14606
|
-
|
|
14920
|
+
"duration": 74.73333,
|
|
14921
|
+
"fext": "jpeg",
|
|
14922
|
+
"img_num": 75,
|
|
14923
|
+
"img_uris": [
|
|
14924
|
+
"tos-useast8-p-0068-tx2/ooDLwIHPI0ii7qi5A0BgP5iCxt7eAA0I7SuEIC",
|
|
14925
|
+
"tos-useast8-p-0068-tx2/oAIzwiI0A0mILDt0HCqii5PeIAwPnDTglABuC7",
|
|
14926
|
+
"tos-useast8-p-0068-tx2/ooTjGIAQQvTFejItQCgPWqLeDwOduIeXTTAQJB"
|
|
14927
|
+
],
|
|
14928
|
+
"img_url": "",
|
|
14929
|
+
"img_urls": [
|
|
14930
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/ooDLwIHPI0ii7qi5A0BgP5iCxt7eAA0I7SuEIC~tplv-noop.image?dr=12525&refresh_token=fc0dc8a9&x-expires=1776372832&x-signature=6RiMfJKPG0qas1WhSadlKmD3HKY%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v15044gf0000d7gbi87og65kts6gub3g",
|
|
14931
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oAIzwiI0A0mILDt0HCqii5PeIAwPnDTglABuC7~tplv-noop.image?dr=12525&refresh_token=cac902b5&x-expires=1776372832&x-signature=xo7kYdV3U1zmVoMwFc2Eu2gJaSw%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v15044gf0000d7gbi87og65kts6gub3g",
|
|
14932
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/ooTjGIAQQvTFejItQCgPWqLeDwOduIeXTTAQJB~tplv-noop.image?dr=12525&refresh_token=8b3b4cca&x-expires=1776372832&x-signature=40yNqW4VY7jfvboB%2FLh03pc1rdM%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v15044gf0000d7gbi87og65kts6gub3g"
|
|
14933
|
+
],
|
|
14934
|
+
"img_x_len": 5,
|
|
14935
|
+
"img_x_size": 136,
|
|
14936
|
+
"img_y_len": 5,
|
|
14937
|
+
"img_y_size": 240,
|
|
14938
|
+
"interval": 1,
|
|
14939
|
+
"uri": ""
|
|
14940
|
+
}
|
|
14941
|
+
],
|
|
14942
|
+
"bit_rate": [
|
|
14943
|
+
{
|
|
14944
|
+
"HDR_bit": "",
|
|
14945
|
+
"HDR_type": "",
|
|
14946
|
+
"bit_rate": 1834664,
|
|
14947
|
+
"dub_infos": null,
|
|
14948
|
+
"fid_profile_labels": "{\"srqa3_0_ori\":\"50\",\"srqa3_0_srv1\":\"55\"}",
|
|
14949
|
+
"fps": 30,
|
|
14950
|
+
"gear_name": "adapt_lowest_1080_1",
|
|
14951
|
+
"is_bytevc1": 1,
|
|
14952
|
+
"play_addr": {
|
|
14953
|
+
"data_size": 17141729,
|
|
14954
|
+
"file_cs": "c:0-63270-6c25",
|
|
14955
|
+
"file_hash": "f29dca82439366fb0c7600fb9228d64a",
|
|
14956
|
+
"height": 1920,
|
|
14957
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
14958
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_1080p_1834664",
|
|
14959
|
+
"url_list": [
|
|
14960
|
+
"https://v16m.tiktokcdn-us.com/3af5c6ed65c71fb0793518b2c1f7e393/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/osAZAwLeIiPQ7CCQI0iB0XPHEWbsA50wiqgIPI/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1791&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OmY8OGk6PGgzO2ZoNDM7Z0BpamVqdm45cjtlOjMzaTczNEA1NGE2LWBfXjQxYDEwXy4zYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
14961
|
+
"https://v19.tiktokcdn-us.com/d83bb115b9d430a09d78fa814d2963e4/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/osAZAwLeIiPQ7CCQI0iB0XPHEWbsA50wiqgIPI/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1791&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OmY8OGk6PGgzO2ZoNDM7Z0BpamVqdm45cjtlOjMzaTczNEA1NGE2LWBfXjQxYDEwXy4zYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
14962
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=6d18b0314ecc4870aeb9c70f95d97c87&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjM1OGM1MTAzZDQ3MzA2MjQ5MDUwMWZhNTFlZDFmNDEx&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
14607
14963
|
],
|
|
14608
|
-
url_prefix: null,
|
|
14609
|
-
width:
|
|
14964
|
+
"url_prefix": null,
|
|
14965
|
+
"width": 1080
|
|
14610
14966
|
},
|
|
14611
|
-
quality_type:
|
|
14612
|
-
video_extra:
|
|
14613
|
-
'{"PktOffsetMap":"[{\\"time\\": 1, \\"offset\\": 247107}, {\\"time\\": 2, \\"offset\\": 286167}, {\\"time\\": 3, \\"offset\\": 333920}, {\\"time\\": 4, \\"offset\\": 494652}, {\\"time\\": 5, \\"offset\\": 649124}, {\\"time\\": 10, \\"offset\\": 1627020}]","mvmaf":"{\\"v2.0\\": {\\"srv1\\": {\\"v1080\\": 90.88, \\"v960\\": 93.364, \\"v864\\": 94.514, \\"v720\\": 96.858}, \\"ori\\": {\\"v1080\\": 78.306, \\"v960\\": 81.88, \\"v864\\": 84.791, \\"v720\\": 90.055}}}","ufq":"","volume_info_json":"","transcode_feature_id":"0ae394037572ea033285aeadc0ac4a6b","dec_info":"","gearvqm":"{\\"v3.0\\": {\\"ori\\": 85.862, \\"sr20\\": 92.464}}"}',
|
|
14967
|
+
"quality_type": 2,
|
|
14968
|
+
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 361279}, {\\\"time\\\": 2, \\\"offset\\\": 512255}, {\\\"time\\\": 3, \\\"offset\\\": 729428}, {\\\"time\\\": 4, \\\"offset\\\": 965485}, {\\\"time\\\": 5, \\\"offset\\\": 1170307}, {\\\"time\\\": 10, \\\"offset\\\": 1930277}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.777, \\\"v960\\\": 98.441, \\\"v864\\\": 98.751, \\\"v720\\\": 99.371}, \\\"ori\\\": {\\\"v1080\\\": 93.538, \\\"v960\\\": 94.793, \\\"v864\\\": 95.74, \\\"v720\\\": 96.922}}}\",\"ufq\":\"{\\\"enh\\\":80.847,\\\"playback\\\":{\\\"ori\\\":78.385,\\\"srv1\\\":80.202},\\\"src\\\":77.337,\\\"trans\\\":78.385,\\\"version\\\":\\\"v1.2\\\"}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"11b0345f3bf185ddbe7c48bd7301980f\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96181,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}"
|
|
14614
14969
|
},
|
|
14615
14970
|
{
|
|
14616
|
-
HDR_bit: "",
|
|
14617
|
-
HDR_type: "",
|
|
14618
|
-
bit_rate:
|
|
14619
|
-
dub_infos: null,
|
|
14620
|
-
fid_profile_labels: "",
|
|
14621
|
-
fps: 30,
|
|
14622
|
-
gear_name: "
|
|
14623
|
-
is_bytevc1: 1,
|
|
14624
|
-
play_addr: {
|
|
14625
|
-
data_size:
|
|
14626
|
-
file_cs: "c:0-
|
|
14627
|
-
file_hash: "
|
|
14628
|
-
height:
|
|
14629
|
-
uri: "
|
|
14630
|
-
url_key:
|
|
14631
|
-
|
|
14632
|
-
|
|
14633
|
-
"https://
|
|
14634
|
-
"https://
|
|
14635
|
-
"https://api16-normal-useast5.tiktokv.us/aweme/v1/play/?faid=1233&file_id=94099f32db5649379266380e9e363ae9&is_play_url=1&item_id=7528150371680767263&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjIyM2IzNGNkODkyZDY2YjMwMTRlMDViNWQ3ODg4MDQ2&source=SEARCH&video_id=v15044gf0000d1slnk7og65sl3jnp5ig",
|
|
14971
|
+
"HDR_bit": "",
|
|
14972
|
+
"HDR_type": "",
|
|
14973
|
+
"bit_rate": 1072978,
|
|
14974
|
+
"dub_infos": null,
|
|
14975
|
+
"fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}",
|
|
14976
|
+
"fps": 30,
|
|
14977
|
+
"gear_name": "adapt_lower_720_1",
|
|
14978
|
+
"is_bytevc1": 1,
|
|
14979
|
+
"play_addr": {
|
|
14980
|
+
"data_size": 10025104,
|
|
14981
|
+
"file_cs": "c:0-63281-ad6d",
|
|
14982
|
+
"file_hash": "787e583c4db52466674f8af6a477f7d9",
|
|
14983
|
+
"height": 1280,
|
|
14984
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
14985
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_720p_1072978",
|
|
14986
|
+
"url_list": [
|
|
14987
|
+
"https://v16m.tiktokcdn-us.com/314485c5cb1b293a5ca81d8ad787c826/69e14c60/video/tos/useast8/tos-useast8-ve-0068c004-tx2/o80gILAePAI1k57iQBI0wkAH3iiqiCjP7CJEJ0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1047&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=NWU5aDxkOmU5Njg6NzU7O0BpamVqdm45cjtlOjMzaTczNEAzNDQ1Li0zNi0xM2MxY141YSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
14988
|
+
"https://v19.tiktokcdn-us.com/4f158fc5b50f2898f1307eec667594b2/69e14c60/video/tos/useast8/tos-useast8-ve-0068c004-tx2/o80gILAePAI1k57iQBI0wkAH3iiqiCjP7CJEJ0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1047&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=NWU5aDxkOmU5Njg6NzU7O0BpamVqdm45cjtlOjMzaTczNEAzNDQ1Li0zNi0xM2MxY141YSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
14989
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=88a8f244f76543069b670a198e767b62&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjhkMjJkNWI0MzUxNDg0YTI2NmQ4N2EzYjM0MmY0ZmNk&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
14636
14990
|
],
|
|
14637
|
-
url_prefix: null,
|
|
14638
|
-
width:
|
|
14991
|
+
"url_prefix": null,
|
|
14992
|
+
"width": 720
|
|
14639
14993
|
},
|
|
14640
|
-
quality_type:
|
|
14641
|
-
video_extra:
|
|
14642
|
-
'{"PktOffsetMap":"[{\\"time\\": 1, \\"offset\\": 164282}, {\\"time\\": 2, \\"offset\\": 190677}, {\\"time\\": 3, \\"offset\\": 225069}, {\\"time\\": 4, \\"offset\\": 342228}, {\\"time\\": 5, \\"offset\\": 464316}, {\\"time\\": 10, \\"offset\\": 1257016}]","mvmaf":"{\\"v2.0\\": {\\"srv1\\": {\\"v1080\\": 84.368, \\"v960\\": 89.227, \\"v864\\": 91.383, \\"v720\\": 94.424}, \\"ori\\": {\\"v1080\\": 70.916, \\"v960\\": 75.643, \\"v864\\": 79.063, \\"v720\\": 84.163}}}","ufq":"","volume_info_json":"","transcode_feature_id":"12a0943fb20072e391017dc242deb5dc","dec_info":"","gearvqm":"{\\"v3.0\\": {\\"ori\\": 79.728, \\"sr20\\": 88.484}}"}',
|
|
14994
|
+
"quality_type": 14,
|
|
14995
|
+
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 242499}, {\\\"time\\\": 2, \\\"offset\\\": 312140}, {\\\"time\\\": 3, \\\"offset\\\": 435253}, {\\\"time\\\": 4, \\\"offset\\\": 564644}, {\\\"time\\\": 5, \\\"offset\\\": 684070}, {\\\"time\\\": 10, \\\"offset\\\": 1121990}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.225, \\\"v960\\\": 94.241, \\\"v864\\\": 95.747, \\\"v720\\\": 97.304}, \\\"ori\\\": {\\\"v1080\\\": 83.601, \\\"v960\\\": 86.558, \\\"v864\\\": 88.851, \\\"v720\\\": 92.655}}}\",\"ufq\":\"{\\\"enh\\\":80.847,\\\"playback\\\":{\\\"ori\\\":68.798,\\\"srv1\\\":76.872},\\\"src\\\":77.337,\\\"trans\\\":68.798,\\\"version\\\":\\\"v1.2\\\"}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"66e435460d542574ea1dfb41eb3280df\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 92.189, \\\"sr20\\\": 98.188}}\",\"audio_bit_rate\":96181,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}"
|
|
14643
14996
|
},
|
|
14644
14997
|
{
|
|
14645
|
-
HDR_bit: "",
|
|
14646
|
-
HDR_type: "",
|
|
14647
|
-
bit_rate:
|
|
14648
|
-
dub_infos: null,
|
|
14649
|
-
fid_profile_labels: "",
|
|
14650
|
-
fps: 30,
|
|
14651
|
-
gear_name: "
|
|
14652
|
-
is_bytevc1: 1,
|
|
14653
|
-
play_addr: {
|
|
14654
|
-
data_size:
|
|
14655
|
-
file_cs: "c:0-
|
|
14656
|
-
file_hash: "
|
|
14657
|
-
height: 1024,
|
|
14658
|
-
uri: "
|
|
14659
|
-
url_key:
|
|
14660
|
-
|
|
14661
|
-
|
|
14662
|
-
"https://
|
|
14663
|
-
"https://
|
|
14664
|
-
"https://api16-normal-useast5.tiktokv.us/aweme/v1/play/?faid=1233&file_id=103abe5eb17548fa8c619ff54740e0ec&is_play_url=1&item_id=7528150371680767263&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNjN2E2MDczNDBhN2IzYzZmZjYwMzc1MDA3YTcxYjll&source=SEARCH&video_id=v15044gf0000d1slnk7og65sl3jnp5ig",
|
|
14998
|
+
"HDR_bit": "",
|
|
14999
|
+
"HDR_type": "",
|
|
15000
|
+
"bit_rate": 884477,
|
|
15001
|
+
"dub_infos": null,
|
|
15002
|
+
"fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}",
|
|
15003
|
+
"fps": 30,
|
|
15004
|
+
"gear_name": "adapt_540_1",
|
|
15005
|
+
"is_bytevc1": 1,
|
|
15006
|
+
"play_addr": {
|
|
15007
|
+
"data_size": 8263898,
|
|
15008
|
+
"file_cs": "c:0-63281-6e26",
|
|
15009
|
+
"file_hash": "f5fc2e83dd6f52f719ae21c79e344267",
|
|
15010
|
+
"height": 1024,
|
|
15011
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
15012
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_540p_884477",
|
|
15013
|
+
"url_list": [
|
|
15014
|
+
"https://v16m.tiktokcdn-us.com/7db3b7e62b102e6eb579dbaeb2d2f266/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15015
|
+
"https://v19.tiktokcdn-us.com/273d74327cfab340818781f232159cd9/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15016
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=2afdbe2b9b3a4f1cba691cdd9a522208&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3YzIzOGE2YzgyZDg2MTc2MmMwMmU0MTRjYjViZTZm&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
14665
15017
|
],
|
|
14666
|
-
url_prefix: null,
|
|
14667
|
-
width: 576
|
|
15018
|
+
"url_prefix": null,
|
|
15019
|
+
"width": 576
|
|
14668
15020
|
},
|
|
14669
|
-
quality_type:
|
|
14670
|
-
video_extra:
|
|
14671
|
-
'{"PktOffsetMap":"[{\\"time\\": 1, \\"offset\\": 149729}, {\\"time\\": 2, \\"offset\\": 187418}, {\\"time\\": 3, \\"offset\\": 226632}, {\\"time\\": 4, \\"offset\\": 346798}, {\\"time\\": 5, \\"offset\\": 449023}, {\\"time\\": 10, \\"offset\\": 1074933}]","mvmaf":"{\\"v2.0\\": {\\"srv1\\": {\\"v1080\\": 80.387, \\"v960\\": 84.691, \\"v864\\": 86.754, \\"v720\\": 91.09}, \\"ori\\": {\\"v1080\\": 66.313, \\"v960\\": 70.973, \\"v864\\": 74.613, \\"v720\\": 81.273}}}","ufq":"","volume_info_json":"","transcode_feature_id":"910baea0ae0c0aa4f683316c9ced388e","dec_info":"","gearvqm":"{\\"v3.0\\": {\\"ori\\": 74.675, \\"sr20\\": 83.43}}"}',
|
|
15021
|
+
"quality_type": 28,
|
|
15022
|
+
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 212113}, {\\\"time\\\": 2, \\\"offset\\\": 268539}, {\\\"time\\\": 3, \\\"offset\\\": 369481}, {\\\"time\\\": 4, \\\"offset\\\": 475881}, {\\\"time\\\": 5, \\\"offset\\\": 576081}, {\\\"time\\\": 10, \\\"offset\\\": 952231}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 89.316, \\\"v960\\\": 91.69, \\\"v864\\\": 94.151, \\\"v720\\\": 96.366}, \\\"ori\\\": {\\\"v1080\\\": 78.542, \\\"v960\\\": 82.306, \\\"v864\\\": 84.559, \\\"v720\\\": 88.984}}}\",\"ufq\":\"{\\\"enh\\\":80.847,\\\"playback\\\":{\\\"ori\\\":65.004,\\\"srv1\\\":73.963},\\\"src\\\":77.337,\\\"trans\\\":65.004,\\\"version\\\":\\\"v1.2\\\"}\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"71348222804428f6e3d09aa9043e9995\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 88.059, \\\"sr20\\\": 96.217}}\",\"audio_bit_rate\":64139,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBIIAQBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}"
|
|
14672
15023
|
},
|
|
14673
15024
|
{
|
|
14674
|
-
HDR_bit: "",
|
|
14675
|
-
HDR_type: "",
|
|
14676
|
-
bit_rate:
|
|
14677
|
-
dub_infos: null,
|
|
14678
|
-
fid_profile_labels: "",
|
|
14679
|
-
fps: 30,
|
|
14680
|
-
gear_name: "
|
|
14681
|
-
is_bytevc1:
|
|
14682
|
-
play_addr: {
|
|
14683
|
-
data_size:
|
|
14684
|
-
file_cs: "c:0-
|
|
14685
|
-
file_hash: "
|
|
14686
|
-
height: 1024,
|
|
14687
|
-
uri: "
|
|
14688
|
-
url_key:
|
|
14689
|
-
|
|
14690
|
-
|
|
14691
|
-
"https://
|
|
14692
|
-
"https://
|
|
14693
|
-
"https://api16-normal-useast5.tiktokv.us/aweme/v1/play/?faid=1233&file_id=90329b5795bb41909ed5c518fd964a70&is_play_url=1&item_id=7528150371680767263&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmE1YmRhYTdhNTRiZjFiZjBhMTRkYmE5ZGRhMDhhNzA1&source=SEARCH&video_id=v15044gf0000d1slnk7og65sl3jnp5ig",
|
|
15025
|
+
"HDR_bit": "",
|
|
15026
|
+
"HDR_type": "",
|
|
15027
|
+
"bit_rate": 668987,
|
|
15028
|
+
"dub_infos": null,
|
|
15029
|
+
"fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}",
|
|
15030
|
+
"fps": 30,
|
|
15031
|
+
"gear_name": "lowest_540_0",
|
|
15032
|
+
"is_bytevc1": 0,
|
|
15033
|
+
"play_addr": {
|
|
15034
|
+
"data_size": 6250521,
|
|
15035
|
+
"file_cs": "c:0-62229-b43b",
|
|
15036
|
+
"file_hash": "5d774fa8cdc13daf25a507c7bab72cfa",
|
|
15037
|
+
"height": 1024,
|
|
15038
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
15039
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_540p_668987",
|
|
15040
|
+
"url_list": [
|
|
15041
|
+
"https://v16m.tiktokcdn-us.com/63a07f7cf8202691e68e30d50f4c26b8/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/ocgCRAI2j6QwARGTvLO1esfDcJTIBIXAq8X7Ce/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=653&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=aTg4ZDM1PDY7OTg1ZjhnaUBpamVqdm45cjtlOjMzaTczNEBfLzYyMi02NTAxMS4tXjIxYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15042
|
+
"https://v19.tiktokcdn-us.com/f0eb0bd114d142885021ee18c14b17ee/69e14c60/video/tos/useast8/tos-useast8-ve-0068c002-tx2/ocgCRAI2j6QwARGTvLO1esfDcJTIBIXAq8X7Ce/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=653&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=aTg4ZDM1PDY7OTg1ZjhnaUBpamVqdm45cjtlOjMzaTczNEBfLzYyMi02NTAxMS4tXjIxYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15043
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4f5da50c12454638839902505a9525bf&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjVkM2E3MzMxMzUzYWI0OTI0OWI1NTU0OTRlMjJjN2Fl&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
14694
15044
|
],
|
|
14695
|
-
url_prefix: null,
|
|
14696
|
-
width: 576
|
|
15045
|
+
"url_prefix": null,
|
|
15046
|
+
"width": 576
|
|
14697
15047
|
},
|
|
14698
|
-
quality_type: 25,
|
|
14699
|
-
video_extra:
|
|
14700
|
-
|
|
14701
|
-
},
|
|
15048
|
+
"quality_type": 25,
|
|
15049
|
+
"video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 175980}, {\\\"time\\\": 2, \\\"offset\\\": 244417}, {\\\"time\\\": 3, \\\"offset\\\": 325077}, {\\\"time\\\": 4, \\\"offset\\\": 403947}, {\\\"time\\\": 5, \\\"offset\\\": 503005}, {\\\"time\\\": 10, \\\"offset\\\": 780283}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 72.286, \\\"v960\\\": 74.302, \\\"v864\\\": 76.291, \\\"v720\\\": 78.633}, \\\"ori\\\": {\\\"v1080\\\": 59.985, \\\"v960\\\": 64.294, \\\"v864\\\": 67.932, \\\"v720\\\": 73.084}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"25b3faebdda74a9e438e851988a6efcc\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":32094}"
|
|
15050
|
+
}
|
|
14702
15051
|
],
|
|
14703
|
-
bit_rate_audio: [],
|
|
14704
|
-
cdn_url_expired: 0,
|
|
14705
|
-
cla_info: {
|
|
14706
|
-
caption_infos: null,
|
|
14707
|
-
captions_type: 0,
|
|
14708
|
-
creator_edited_caption_id: 0,
|
|
14709
|
-
enable_auto_caption: 0,
|
|
14710
|
-
has_original_audio: 0,
|
|
14711
|
-
hide_original_caption: false,
|
|
14712
|
-
|
|
14713
|
-
|
|
14714
|
-
|
|
14715
|
-
|
|
14716
|
-
|
|
14717
|
-
|
|
14718
|
-
|
|
14719
|
-
|
|
14720
|
-
|
|
14721
|
-
|
|
15052
|
+
"bit_rate_audio": [],
|
|
15053
|
+
"cdn_url_expired": 0,
|
|
15054
|
+
"cla_info": {
|
|
15055
|
+
"caption_infos": null,
|
|
15056
|
+
"captions_type": 0,
|
|
15057
|
+
"creator_edited_caption_id": 0,
|
|
15058
|
+
"enable_auto_caption": 0,
|
|
15059
|
+
"has_original_audio": 0,
|
|
15060
|
+
"hide_original_caption": false,
|
|
15061
|
+
"is_author_dubbing_qualified": false,
|
|
15062
|
+
"no_caption_reason": 3,
|
|
15063
|
+
"no_caption_reason_v2": 3,
|
|
15064
|
+
"vertical_positions": null
|
|
15065
|
+
},
|
|
15066
|
+
"cover": {
|
|
15067
|
+
"data_size": 0,
|
|
15068
|
+
"height": 720,
|
|
15069
|
+
"uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
|
|
15070
|
+
"url_list": [
|
|
15071
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-x7g4mazu7z-crop-75-heic:500:800.heic?biz_tag=musically_general.video_cover&dr=9616&ftpl=1&idc=useast8&ps=13740610&refresh_token=8b99bd1f&shcp=c1333099&shp=0e6dc556&t=4d5b0474&x-expires=1776369600&x-signature=uLauGG3cxgX4YNkmTe4ajMywFiM%3D",
|
|
15072
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-x7g4mazu7z-crop-75-heic:500:800.heic?biz_tag=musically_general.video_cover&dr=9616&ftpl=1&idc=useast8&ps=13740610&refresh_token=7ec7ad1a&shcp=c1333099&shp=0e6dc556&t=4d5b0474&x-expires=1776369600&x-signature=Ten2oafvOYdlHCXkSIopPeSn3wg%3D",
|
|
15073
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-x7g4mazu7z-crop-75-heic:500:800.jpeg?biz_tag=musically_general.video_cover&dr=9616&ftpl=1&idc=useast8&ps=13740610&refresh_token=e8ccd851&shcp=c1333099&shp=0e6dc556&t=4d5b0474&x-expires=1776369600&x-signature=rsrEL03rR6c4w9NSNEZwBhyEXZU%3D"
|
|
14722
15074
|
],
|
|
14723
|
-
url_prefix: null,
|
|
14724
|
-
width: 720
|
|
14725
|
-
},
|
|
14726
|
-
cover_is_custom: true,
|
|
14727
|
-
did_profile_labels: "",
|
|
14728
|
-
download_addr: {
|
|
14729
|
-
data_size:
|
|
14730
|
-
file_cs: "c:0-
|
|
14731
|
-
height: 720,
|
|
14732
|
-
uri: "
|
|
14733
|
-
url_list: [
|
|
14734
|
-
"https://v16m.tiktokcdn-us.com/
|
|
14735
|
-
"https://v19.tiktokcdn-us.com/
|
|
14736
|
-
"https://api16-normal-
|
|
15075
|
+
"url_prefix": null,
|
|
15076
|
+
"width": 720
|
|
15077
|
+
},
|
|
15078
|
+
"cover_is_custom": true,
|
|
15079
|
+
"did_profile_labels": "",
|
|
15080
|
+
"download_addr": {
|
|
15081
|
+
"data_size": 16550859,
|
|
15082
|
+
"file_cs": "c:0-61940-57f3",
|
|
15083
|
+
"height": 720,
|
|
15084
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
15085
|
+
"url_list": [
|
|
15086
|
+
"https://v16m.tiktokcdn-us.com/4df00bcded97cf2a2e11b1315e4049fd/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocgxfjCTtwBdJL8JTcXGdAAIqsIeABvkQRfDIX/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1729&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OTdpNzVkOGQ6N2Y4PDVpaUBpamVqdm45cjtlOjMzaTczNEBgXjYyYDIxX2ExXy41YTAwYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15087
|
+
"https://v19.tiktokcdn-us.com/a68f6cee045e5c83f59b64556c4bf27f/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocgxfjCTtwBdJL8JTcXGdAAIqsIeABvkQRfDIX/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1729&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OTdpNzVkOGQ6N2Y4PDVpaUBpamVqdm45cjtlOjMzaTczNEBgXjYyYDIxX2ExXy41YTAwYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15088
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v15044gf0000d7gbi87og65kts6gub3g&line=0&watermark=1&logo_name=tiktok_m&source=SEARCH&file_id=3f3fd28915bc44d7ba455ac2549fa4c6&item_id=7629303091011079455&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjVlZjUwZjE2MWVjNzk3ZDhmMWM3OTA1NzBlNWZiNjEz&shp=d05b14bd&shcp=-"
|
|
14737
15089
|
],
|
|
14738
|
-
url_prefix: null,
|
|
14739
|
-
width: 720
|
|
14740
|
-
},
|
|
14741
|
-
download_no_watermark_addr: {
|
|
14742
|
-
data_size:
|
|
14743
|
-
file_cs: "c:0-
|
|
14744
|
-
file_hash: "
|
|
14745
|
-
height:
|
|
14746
|
-
uri: "
|
|
14747
|
-
url_key: "
|
|
14748
|
-
url_list: [
|
|
14749
|
-
"https://v16m.tiktokcdn-us.com/
|
|
14750
|
-
"https://v19.tiktokcdn-us.com/
|
|
14751
|
-
"https://api16-normal-
|
|
15090
|
+
"url_prefix": null,
|
|
15091
|
+
"width": 720
|
|
15092
|
+
},
|
|
15093
|
+
"download_no_watermark_addr": {
|
|
15094
|
+
"data_size": 17605480,
|
|
15095
|
+
"file_cs": "c:0-61940-57f3",
|
|
15096
|
+
"file_hash": "feec6206b4edf0ad72daa9296c44e29a",
|
|
15097
|
+
"height": 1280,
|
|
15098
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
15099
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_720p_1884299",
|
|
15100
|
+
"url_list": [
|
|
15101
|
+
"https://v16m.tiktokcdn-us.com/a25f3945bbc418195d7ee845511c5a8a/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15102
|
+
"https://v19.tiktokcdn-us.com/e42caeef3b15591a0483b51afaf154b3/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15103
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=b158582184fd42fe83c59fda2b9a781a&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3MmUyNmUwOWQ2NzhlMTFkZTVhMTYxZDQwYWE4MWE1&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
14752
15104
|
],
|
|
14753
|
-
url_prefix: null,
|
|
14754
|
-
width:
|
|
15105
|
+
"url_prefix": null,
|
|
15106
|
+
"width": 720
|
|
15107
|
+
},
|
|
15108
|
+
"duration": 74746,
|
|
15109
|
+
"dynamic_cover": {
|
|
15110
|
+
"data_size": 0,
|
|
15111
|
+
"height": 720,
|
|
15112
|
+
"uri": "tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I",
|
|
15113
|
+
"url_list": [
|
|
15114
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=09b100e3&x-expires=1776434400&x-signature=JTXWc%2FaikAGAHeUSajPjKhjZsXE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=dynamic_cover",
|
|
15115
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.image?dr=8606&refresh_token=ed6435b3&x-expires=1776434400&x-signature=Bs9zMEzbWhfiZOaTNd9bk4k04lg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=dynamic_cover",
|
|
15116
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oMBOAun84iDAnCFAE0iBxsf1IAl2A1zWiKgk3I~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=3a1a6073&x-expires=1776434400&x-signature=5IreII8UZseVE0DTqZzs2PMZDB8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=dynamic_cover"
|
|
15117
|
+
],
|
|
15118
|
+
"url_prefix": null,
|
|
15119
|
+
"width": 720
|
|
15120
|
+
},
|
|
15121
|
+
"has_watermark": true,
|
|
15122
|
+
"height": 1280,
|
|
15123
|
+
"is_bytevc1": 0,
|
|
15124
|
+
"is_callback": true,
|
|
15125
|
+
"is_long_video": 1,
|
|
15126
|
+
"meta": "{\"LoudnessRange\":\"11.5\",\"LoudnessRangeEnd\":\"-11.6\",\"LoudnessRangeStart\":\"-23.1\",\"MaximumMomentaryLoudness\":\"-6.3\",\"MaximumShortTermLoudness\":\"-10.3\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Loudness\\\":-14.3,\\\"LoudnessRangeStart\\\":-23.1,\\\"MaximumShortTermLoudness\\\":-10.3,\\\"Metrics\\\":{\\\"RMSStats\\\":{\\\"LRDiff\\\":-0.275,\\\"LTotal\\\":-19.091,\\\"Peak\\\":2.546,\\\"RTotal\\\":-18.816},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.14,\\\"SingingRatio\\\":0.04,\\\"SpeechRatio\\\":0.31},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"Loud\\\":-12.62,\\\"LoudR\\\":12.6,\\\"LoudRE\\\":-10.3,\\\"LoudRS\\\":-22.9,\\\"MaxMomLoud\\\":-6.34,\\\"MaxSTLoud\\\":-10.07}},\\\"Cutoff\\\":{\\\"Spkr200G\\\":0.35,\\\"FCenL\\\":3484.45,\\\"FCenR\\\":3469.69,\\\"Spkr100G\\\":0.14,\\\"Spkr150G\\\":0.26},\\\"Loudness\\\":{\\\"Integrated\\\":-14.335},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.237}},\\\"LoudnessRange\\\":11.5,\\\"LoudnessRangeEnd\\\":-11.6,\\\"MaximumMomentaryLoudness\\\":-6.3,\\\"Peak\\\":1,\\\"Version\\\":2}\",\"bright_ratio_mean\":\"0.1531\",\"brightness_mean\":\"161.6178\",\"diff_overexposure_ratio\":\"0.0943\",\"loudness\":\"-14.3\",\"overexposure_ratio_mean\":\"0.122\",\"peak\":\"1\",\"play_time_prob_dist\":\"[800,0.4674,8423.4496]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1776335561}\",\"sr_score\":\"1.000\",\"std_brightness\":\"28.4121\",\"vq_score\":\"63.66\"}",
|
|
15127
|
+
"need_set_token": false,
|
|
15128
|
+
"origin_cover": {
|
|
15129
|
+
"data_size": 0,
|
|
15130
|
+
"height": 720,
|
|
15131
|
+
"uri": "tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej",
|
|
15132
|
+
"url_list": [
|
|
15133
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=92ede139&x-expires=1776434400&x-signature=dIHt%2Be2V16Dce7CuJbqOmJOz5Yo%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=feed_cover",
|
|
15134
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=216b9294&x-expires=1776434400&x-signature=C40wpBbCh9NVbemCegy9U6IHgvY%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=feed_cover",
|
|
15135
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oQCgAuWwzLfHvIXDQTIGTseOQr8FAJQDIqgBej~tplv-dmt-adapt-360p.jpeg?dr=8597&refresh_token=be6a725e&x-expires=1776434400&x-signature=ChhsDBtXgBxP6hprNqXxEQFUnWw%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast8&biz_tag=tt_video&s=SEARCH&sc=feed_cover"
|
|
15136
|
+
],
|
|
15137
|
+
"url_prefix": null,
|
|
15138
|
+
"width": 720
|
|
15139
|
+
},
|
|
15140
|
+
"play_addr": {
|
|
15141
|
+
"data_size": 17605480,
|
|
15142
|
+
"file_cs": "c:0-61940-57f3",
|
|
15143
|
+
"file_hash": "feec6206b4edf0ad72daa9296c44e29a",
|
|
15144
|
+
"height": 1280,
|
|
15145
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
15146
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_720p_1884299",
|
|
15147
|
+
"url_list": [
|
|
15148
|
+
"https://v16m.tiktokcdn-us.com/a25f3945bbc418195d7ee845511c5a8a/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15149
|
+
"https://v19.tiktokcdn-us.com/e42caeef3b15591a0483b51afaf154b3/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15150
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=b158582184fd42fe83c59fda2b9a781a&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3MmUyNmUwOWQ2NzhlMTFkZTVhMTYxZDQwYWE4MWE1&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
15151
|
+
],
|
|
15152
|
+
"url_prefix": null,
|
|
15153
|
+
"width": 720
|
|
15154
|
+
},
|
|
15155
|
+
"play_addr_bytevc1": {
|
|
15156
|
+
"data_size": 8263898,
|
|
15157
|
+
"file_cs": "c:0-63281-6e26",
|
|
15158
|
+
"file_hash": "f5fc2e83dd6f52f719ae21c79e344267",
|
|
15159
|
+
"height": 1024,
|
|
15160
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
15161
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_bytevc1_540p_884477",
|
|
15162
|
+
"url_list": [
|
|
15163
|
+
"https://v16m.tiktokcdn-us.com/7db3b7e62b102e6eb579dbaeb2d2f266/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15164
|
+
"https://v19.tiktokcdn-us.com/273d74327cfab340818781f232159cd9/69e14c60/video/tos/useast8/tos-useast8-ve-0068c003-tx2/okBg4qbIEAPe0IiaTPI3CF0i55AHCALwQ7AHi0/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=863&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=OzU1ZGdmPGRmaWRlZWhnZEBpamVqdm45cjtlOjMzaTczNEAtLzI2YS4zXy4xMDYvX2MvYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15165
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=2afdbe2b9b3a4f1cba691cdd9a522208&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3YzIzOGE2YzgyZDg2MTc2MmMwMmU0MTRjYjViZTZm&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
15166
|
+
],
|
|
15167
|
+
"url_prefix": null,
|
|
15168
|
+
"width": 576
|
|
15169
|
+
},
|
|
15170
|
+
"play_addr_h264": {
|
|
15171
|
+
"data_size": 17605480,
|
|
15172
|
+
"file_cs": "c:0-61940-57f3",
|
|
15173
|
+
"file_hash": "feec6206b4edf0ad72daa9296c44e29a",
|
|
15174
|
+
"height": 1280,
|
|
15175
|
+
"uri": "v15044gf0000d7gbi87og65kts6gub3g",
|
|
15176
|
+
"url_key": "v15044gf0000d7gbi87og65kts6gub3g_h264_720p_1884299",
|
|
15177
|
+
"url_list": [
|
|
15178
|
+
"https://v16m.tiktokcdn-us.com/a25f3945bbc418195d7ee845511c5a8a/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15179
|
+
"https://v19.tiktokcdn-us.com/e42caeef3b15591a0483b51afaf154b3/69e14c60/video/tos/useast8/tos-useast8-pve-0068-tx2/ocbLCQgiIqwPP5jHuAQClEyeIA7000BddIviiA/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&&bt=1840&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=video_mp4&rc=ZDtkZWRpODZoNWc3NDs7NEBpamVqdm45cjtlOjMzaTczNEAuNDYvYTZgNWMxYzUvMjJfYSMwcjNxMmQ0ZmRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000",
|
|
15180
|
+
"https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=b158582184fd42fe83c59fda2b9a781a&is_play_url=1&item_id=7629303091011079455&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM3MmUyNmUwOWQ2NzhlMTFkZTVhMTYxZDQwYWE4MWE1&source=SEARCH&video_id=v15044gf0000d7gbi87og65kts6gub3g"
|
|
15181
|
+
],
|
|
15182
|
+
"url_prefix": null,
|
|
15183
|
+
"width": 720
|
|
15184
|
+
},
|
|
15185
|
+
"ratio": "720p",
|
|
15186
|
+
"source_HDR_type": 0,
|
|
15187
|
+
"tags": null,
|
|
15188
|
+
"vid_profile_labels": "{\"tier3\":\"10002\"}",
|
|
15189
|
+
"video_model": "",
|
|
15190
|
+
"width": 720
|
|
15191
|
+
},
|
|
15192
|
+
"author": {
|
|
15193
|
+
"accept_private_policy": false,
|
|
15194
|
+
"account_labels": null,
|
|
15195
|
+
"ad_cover_url": null,
|
|
15196
|
+
"advance_feature_item_order": null,
|
|
15197
|
+
"advanced_feature_info": null,
|
|
15198
|
+
"authority_status": 0,
|
|
15199
|
+
"avatar_168x168": {
|
|
15200
|
+
"height": 720,
|
|
15201
|
+
"uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
|
|
15202
|
+
"url_list": [
|
|
15203
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=f404ce64&x-expires=1776434400&x-signature=bf5r5QBxki30Cuhz0H1kbb7IXNA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15204
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=66376428&x-expires=1776434400&x-signature=3nhXmTdmLiXDODoCc0NrtpLfUGA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15205
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=d9663fc2&x-expires=1776434400&x-signature=SG9pGXTn4ay9ujcD5TnL%2FGVjX34%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
15206
|
+
],
|
|
15207
|
+
"url_prefix": null,
|
|
15208
|
+
"width": 720
|
|
14755
15209
|
},
|
|
14756
|
-
|
|
14757
|
-
|
|
14758
|
-
|
|
14759
|
-
|
|
14760
|
-
|
|
14761
|
-
"https://
|
|
14762
|
-
"https://
|
|
14763
|
-
"https://p19-pu-sign-useast8.tiktokcdn-us.com/tos-useast8-p-0068-tx2/ogBjDEAfE9QAhZIOIE5AtqFAveLqXIfViuAqzq~tplv-tiktokx-origin.jpeg?dr=8606&refresh_token=31622a04&x-expires=1752876000&x-signature=KjubJPMHPf%2FYLLHRk5y6jEvVtwc%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=0e6dc556&idc=useast5&biz_tag=tt_video&s=SEARCH&sc=dynamic_cover",
|
|
15210
|
+
"avatar_300x300": {
|
|
15211
|
+
"height": 720,
|
|
15212
|
+
"uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
|
|
15213
|
+
"url_list": [
|
|
15214
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=e3166951&x-expires=1776434400&x-signature=GMbn3ZwvcxmfUfynqQjZIQNBnEk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15215
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=b3c841ac&x-expires=1776434400&x-signature=fmx8arq6poraDZTueiRdyesnVcI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15216
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=600cf80d&x-expires=1776434400&x-signature=dx%2FKxPNcWHe2tfBa72x6n3LLHAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
14764
15217
|
],
|
|
14765
|
-
url_prefix: null,
|
|
14766
|
-
width: 720
|
|
15218
|
+
"url_prefix": null,
|
|
15219
|
+
"width": 720
|
|
14767
15220
|
},
|
|
14768
|
-
|
|
14769
|
-
|
|
14770
|
-
|
|
14771
|
-
|
|
14772
|
-
|
|
14773
|
-
|
|
14774
|
-
|
|
14775
|
-
need_set_token: false,
|
|
14776
|
-
origin_cover: {
|
|
14777
|
-
height: 720,
|
|
14778
|
-
uri: "tos-useast8-p-0068-tx2/oUOAX8aqy5l01iiPVb1CH8OBlRd0E1IjBIBAl",
|
|
14779
|
-
url_list: [
|
|
14780
|
-
"https://p19-pu-sign-useast8.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oUOAX8aqy5l01iiPVb1CH8OBlRd0E1IjBIBAl~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=f5550b84&x-expires=1752876000&x-signature=gJ4wcqFj6hXrj70sSczyjrZU7r4%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast5&biz_tag=tt_video&s=SEARCH&sc=feed_cover",
|
|
14781
|
-
"https://p16-pu-sign-useast8.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oUOAX8aqy5l01iiPVb1CH8OBlRd0E1IjBIBAl~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=adcdcd06&x-expires=1752876000&x-signature=g3VPC5Q9LtEpHGqUG%2F9pGDI351Q%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast5&biz_tag=tt_video&s=SEARCH&sc=feed_cover",
|
|
14782
|
-
"https://p19-pu-sign-useast8.tiktokcdn-us.com/tos-useast8-p-0068-tx2/oUOAX8aqy5l01iiPVb1CH8OBlRd0E1IjBIBAl~tplv-dmt-adapt-360p.jpeg?dr=8597&refresh_token=ece32a17&x-expires=1752876000&x-signature=iqeOZlVVv8RiqiYuULQYlPIDCEM%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=0e6dc556&idc=useast5&biz_tag=tt_video&s=SEARCH&sc=feed_cover",
|
|
15221
|
+
"avatar_larger": {
|
|
15222
|
+
"height": 720,
|
|
15223
|
+
"uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
|
|
15224
|
+
"url_list": [
|
|
15225
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=dd6801b0&x-expires=1776434400&x-signature=ChjXRh8JTJ9AZ8lKJ%2Fgcu38O%2BX4%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15226
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=d09f3b3d&x-expires=1776434400&x-signature=Gx1biRZXEbIDa3KexeBYKD%2FDeF8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15227
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=bcd429b5&x-expires=1776434400&x-signature=0pN5zdZ%2FL0%2F%2BRKUTyCFu5arAFMI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
14783
15228
|
],
|
|
14784
|
-
url_prefix: null,
|
|
14785
|
-
width: 720
|
|
15229
|
+
"url_prefix": null,
|
|
15230
|
+
"width": 720
|
|
14786
15231
|
},
|
|
14787
|
-
|
|
14788
|
-
|
|
14789
|
-
|
|
14790
|
-
|
|
14791
|
-
|
|
14792
|
-
|
|
14793
|
-
|
|
14794
|
-
url_list: [
|
|
14795
|
-
"https://v16m.tiktokcdn-us.com/d13761ce93fdac91545c2f5afef392fd/6879c873/video/tos/useast8/tos-useast8-ve-0068c001-tx2/oYXH5AWWallOl8VPDcdAR5OSE0qbiPBIBQ8iE/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=3846&bt=1923&cs=0&ds=6&ft=gKfIn8QLodzR12Nvc8.pWIxR5YaEZQ_45SY&mime_type=video_mp4&qs=0&rc=NTk3ZTY2ODVlZjo0Zmc7OkBpajhxNnY5cm5vNDMzaTczNEAtNTAxNDRfXjUxL182LTU2YSNmbWdpMmQ0a3BhLS1kMTJzcw%3D%3D&vvpl=1&l=2025071722070196628CAF0563641DD450&btag=e000b8000",
|
|
14796
|
-
"https://v19.tiktokcdn-us.com/c171dbdafe818e0fd3662a4be37ad635/6879c873/video/tos/useast8/tos-useast8-ve-0068c001-tx2/oYXH5AWWallOl8VPDcdAR5OSE0qbiPBIBQ8iE/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=3846&bt=1923&cs=0&ds=6&ft=gKfIn8QLodzR12Nvc8.pWIxR5YaEZQ_45SY&mime_type=video_mp4&qs=0&rc=NTk3ZTY2ODVlZjo0Zmc7OkBpajhxNnY5cm5vNDMzaTczNEAtNTAxNDRfXjUxL182LTU2YSNmbWdpMmQ0a3BhLS1kMTJzcw%3D%3D&vvpl=1&l=2025071722070196628CAF0563641DD450&btag=e000b8000",
|
|
14797
|
-
"https://api16-normal-useast5.tiktokv.us/aweme/v1/play/?faid=1233&file_id=97880d9cb1274c8ba2b573734b348602&is_play_url=1&item_id=7528150371680767263&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjI4MzNkNzNjYzg3M2IzNzIyNjk5YTU0Y2EyMmFmYjU3&source=SEARCH&video_id=v15044gf0000d1slnk7og65sl3jnp5ig",
|
|
15232
|
+
"avatar_medium": {
|
|
15233
|
+
"height": 720,
|
|
15234
|
+
"uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
|
|
15235
|
+
"url_list": [
|
|
15236
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=564ab630&x-expires=1776434400&x-signature=%2F%2F8CezO5NzA%2B1euQAdLH8jTO8dc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15237
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=993042be&x-expires=1776434400&x-signature=%2BgvEDYSkzkyOgBakZp8rx%2FOrod8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
|
|
15238
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=2a2ccc8d&x-expires=1776434400&x-signature=vMBUx58sXaIqMJ%2Bf5O8Al54xoUk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
|
|
14798
15239
|
],
|
|
14799
|
-
url_prefix: null,
|
|
14800
|
-
width:
|
|
15240
|
+
"url_prefix": null,
|
|
15241
|
+
"width": 720
|
|
14801
15242
|
},
|
|
14802
|
-
|
|
14803
|
-
|
|
14804
|
-
|
|
14805
|
-
|
|
14806
|
-
|
|
14807
|
-
|
|
14808
|
-
|
|
14809
|
-
"v15044gf0000d1slnk7og65sl3jnp5ig_bytevc1_540p_1023722",
|
|
14810
|
-
url_list: [
|
|
14811
|
-
"https://v16m.tiktokcdn-us.com/657c39a6745042440456cecef207c9ca/6879c873/video/tos/useast8/tos-useast8-pve-0068-tx2/owdqQMBlV5AWRB8y1EPBkl0bOHMXIA8iEialO/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1998&bt=999&cs=2&ds=6&ft=gKfIn8QLodzR12Nvc8.pWIxR5YaEZQ_45SY&mime_type=video_mp4&qs=11&rc=PGQ5aGg7OTU6PDllNWk8N0BpajhxNnY5cm5vNDMzaTczNEBiMDA2LTAzNjAxMmEwNi02YSNmbWdpMmQ0a3BhLS1kMTJzcw%3D%3D&vvpl=1&l=2025071722070196628CAF0563641DD450&btag=e000b8000",
|
|
14812
|
-
"https://v19.tiktokcdn-us.com/6142eb1f8761261f75377d2bbf8de0ae/6879c873/video/tos/useast8/tos-useast8-pve-0068-tx2/owdqQMBlV5AWRB8y1EPBkl0bOHMXIA8iEialO/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1998&bt=999&cs=2&ds=6&ft=gKfIn8QLodzR12Nvc8.pWIxR5YaEZQ_45SY&mime_type=video_mp4&qs=11&rc=PGQ5aGg7OTU6PDllNWk8N0BpajhxNnY5cm5vNDMzaTczNEBiMDA2LTAzNjAxMmEwNi02YSNmbWdpMmQ0a3BhLS1kMTJzcw%3D%3D&vvpl=1&l=2025071722070196628CAF0563641DD450&btag=e000b8000",
|
|
14813
|
-
"https://api16-normal-useast5.tiktokv.us/aweme/v1/play/?faid=1233&file_id=94099f32db5649379266380e9e363ae9&is_play_url=1&item_id=7528150371680767263&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjIyM2IzNGNkODkyZDY2YjMwMTRlMDViNWQ3ODg4MDQ2&source=SEARCH&video_id=v15044gf0000d1slnk7og65sl3jnp5ig",
|
|
15243
|
+
"avatar_thumb": {
|
|
15244
|
+
"height": 720,
|
|
15245
|
+
"uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
|
|
15246
|
+
"url_list": [
|
|
15247
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.video_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=d284aec3&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=wzHZlkY%2BTnr1DnjZvMerpgYfhI0%3D",
|
|
15248
|
+
"https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:100:100.webp?biz_tag=musically_general.video_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=7868be8a&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=KlM%2BUZN6LLAFjOHxMtMe4no0bjU%3D",
|
|
15249
|
+
"https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_general.video_user_cover&dr=9640&idc=useast8&ps=13740610&refresh_token=9bff60c6&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474&x-expires=1776434400&x-signature=NwJImzuPYjbzpPR8K%2B24LanpjHQ%3D"
|
|
14814
15250
|
],
|
|
14815
|
-
url_prefix: null,
|
|
14816
|
-
width:
|
|
15251
|
+
"url_prefix": null,
|
|
15252
|
+
"width": 720
|
|
14817
15253
|
},
|
|
14818
|
-
|
|
14819
|
-
|
|
14820
|
-
|
|
14821
|
-
|
|
14822
|
-
|
|
14823
|
-
|
|
14824
|
-
|
|
14825
|
-
|
|
14826
|
-
|
|
14827
|
-
|
|
14828
|
-
|
|
14829
|
-
|
|
14830
|
-
|
|
14831
|
-
|
|
14832
|
-
|
|
14833
|
-
|
|
14834
|
-
|
|
14835
|
-
|
|
14836
|
-
|
|
14837
|
-
|
|
14838
|
-
|
|
14839
|
-
|
|
14840
|
-
|
|
14841
|
-
|
|
14842
|
-
|
|
14843
|
-
|
|
14844
|
-
|
|
14845
|
-
|
|
14846
|
-
|
|
14847
|
-
|
|
14848
|
-
|
|
14849
|
-
|
|
14850
|
-
|
|
14851
|
-
|
|
14852
|
-
|
|
14853
|
-
|
|
14854
|
-
|
|
14855
|
-
|
|
14856
|
-
|
|
14857
|
-
|
|
14858
|
-
|
|
14859
|
-
|
|
14860
|
-
|
|
14861
|
-
|
|
14862
|
-
|
|
14863
|
-
|
|
14864
|
-
|
|
14865
|
-
|
|
14866
|
-
|
|
14867
|
-
|
|
14868
|
-
|
|
14869
|
-
|
|
14870
|
-
|
|
14871
|
-
|
|
14872
|
-
|
|
14873
|
-
|
|
14874
|
-
|
|
14875
|
-
|
|
14876
|
-
|
|
14877
|
-
|
|
14878
|
-
|
|
14879
|
-
|
|
14880
|
-
|
|
14881
|
-
|
|
14882
|
-
|
|
14883
|
-
|
|
14884
|
-
|
|
14885
|
-
|
|
14886
|
-
|
|
14887
|
-
|
|
14888
|
-
|
|
14889
|
-
|
|
14890
|
-
|
|
14891
|
-
|
|
14892
|
-
|
|
14893
|
-
|
|
14894
|
-
|
|
14895
|
-
|
|
14896
|
-
|
|
14897
|
-
|
|
14898
|
-
|
|
14899
|
-
|
|
14900
|
-
|
|
14901
|
-
|
|
14902
|
-
|
|
14903
|
-
|
|
14904
|
-
|
|
14905
|
-
|
|
14906
|
-
|
|
14907
|
-
|
|
14908
|
-
|
|
14909
|
-
|
|
14910
|
-
|
|
14911
|
-
|
|
14912
|
-
|
|
14913
|
-
|
|
14914
|
-
|
|
14915
|
-
|
|
14916
|
-
|
|
14917
|
-
|
|
14918
|
-
|
|
14919
|
-
|
|
14920
|
-
|
|
14921
|
-
|
|
14922
|
-
|
|
14923
|
-
|
|
14924
|
-
|
|
14925
|
-
|
|
14926
|
-
hide_search: false,
|
|
14927
|
-
homepage_bottom_toast: null,
|
|
14928
|
-
ins_id: "",
|
|
14929
|
-
is_ad_fake: false,
|
|
14930
|
-
is_block: false,
|
|
14931
|
-
is_discipline_member: false,
|
|
14932
|
-
is_mute: 0,
|
|
14933
|
-
is_mute_lives: 0,
|
|
14934
|
-
is_mute_non_story_post: 0,
|
|
14935
|
-
is_mute_story: 0,
|
|
14936
|
-
is_star: false,
|
|
14937
|
-
item_list: null,
|
|
14938
|
-
live_agreement: 0,
|
|
14939
|
-
live_commerce: false,
|
|
14940
|
-
live_verify: 0,
|
|
14941
|
-
mention_status: 1,
|
|
14942
|
-
mutual_relation_avatars: null,
|
|
14943
|
-
name_field: "nickname",
|
|
14944
|
-
need_points: null,
|
|
14945
|
-
need_recommend: 0,
|
|
14946
|
-
nickname: "Nick Kosir",
|
|
14947
|
-
platform_sync_info: null,
|
|
14948
|
-
prevent_download: false,
|
|
14949
|
-
relative_users: null,
|
|
14950
|
-
reply_with_video_flag: 4,
|
|
14951
|
-
room_id: 0,
|
|
14952
|
-
search_highlight: null,
|
|
14953
|
-
search_user_desc: "officialnickkosir",
|
|
14954
|
-
search_user_name: "Nick Kosir",
|
|
14955
|
-
sec_uid:
|
|
14956
|
-
"MS4wLjABAAAAyxgSubv-AgwPhtf7Xam7IFC4QhOr_7bwnCg-ASCU8C1Ry74fq6gMbG1-CcOe4EU9",
|
|
14957
|
-
secret: 0,
|
|
14958
|
-
shield_comment_notice: 0,
|
|
14959
|
-
shield_digg_notice: 0,
|
|
14960
|
-
shield_edit_field_info: null,
|
|
14961
|
-
shield_follow_notice: 0,
|
|
14962
|
-
short_id: "0",
|
|
14963
|
-
show_image_bubble: false,
|
|
14964
|
-
special_account: {
|
|
14965
|
-
special_account_list: null,
|
|
14966
|
-
},
|
|
14967
|
-
special_lock: 1,
|
|
14968
|
-
status: 1,
|
|
14969
|
-
stitch_setting: 0,
|
|
14970
|
-
total_favorited: 0,
|
|
14971
|
-
type_label: null,
|
|
14972
|
-
uid: "6699211557223826437",
|
|
14973
|
-
unique_id: "officialnickkosir",
|
|
14974
|
-
user_canceled: false,
|
|
14975
|
-
user_mode: 1,
|
|
14976
|
-
user_period: 0,
|
|
14977
|
-
user_profile_guide: null,
|
|
14978
|
-
user_rate: 1,
|
|
14979
|
-
user_spark_info: {},
|
|
14980
|
-
user_tags: null,
|
|
14981
|
-
verification_type: 0,
|
|
14982
|
-
verify_info: "",
|
|
14983
|
-
video_icon: {
|
|
14984
|
-
height: 720,
|
|
14985
|
-
uri: "",
|
|
14986
|
-
url_list: [],
|
|
14987
|
-
url_prefix: null,
|
|
14988
|
-
width: 720,
|
|
14989
|
-
},
|
|
14990
|
-
white_cover_url: null,
|
|
14991
|
-
with_commerce_entry: false,
|
|
14992
|
-
with_shop_entry: false,
|
|
14993
|
-
},
|
|
14994
|
-
is_eligible_for_commission: true,
|
|
14995
|
-
is_paid_partnership: false,
|
|
14996
|
-
create_time_utc: "2025-09-03T18:37:38.000Z",
|
|
14997
|
-
url: "https://www.tiktok.com/@branttakes/video/7545933721589910798",
|
|
14998
|
-
shop_product_url:
|
|
14999
|
-
"https://www.tiktok.com/shop/pdp/1729494515984797858",
|
|
15000
|
-
},
|
|
15001
|
-
],
|
|
15002
|
-
cursor: 30,
|
|
15003
|
-
},
|
|
15004
|
-
},
|
|
15005
|
-
{
|
|
15006
|
-
name: "Get popular songs",
|
|
15007
|
-
method: "GET",
|
|
15008
|
-
description:
|
|
15009
|
-
"This endpoint can take up to 30 seconds. Get popular songs from TikTok. If you want to check out the page this is actually scraping, check out: https://ads.tiktok.com/business/creativecenter/inspiration/popular/music/pc/en",
|
|
15010
|
-
fullDescription: "Gets the current trending and popular songs/sounds on TikTok, sourced from the TikTok Creative Center. Returns `sound_list`, an array of song objects each with `title`, `author`, `clip_id`, `rank`, `cover` image URL, `duration`, `link` to the sound page, and a `trend` array showing popularity over time. Filter by country, time period (7/30/120 days), rank type (popular vs surging), and commercial music approval.",
|
|
15011
|
-
path: "/v1/tiktok/songs/popular",
|
|
15012
|
-
youtubeId: "YMOQjj9seaY",
|
|
15013
|
-
params: [
|
|
15014
|
-
{
|
|
15015
|
-
name: "page",
|
|
15016
|
-
type: "number",
|
|
15017
|
-
placeholder: 1,
|
|
15018
|
-
description: "Page number",
|
|
15019
|
-
},
|
|
15020
|
-
{
|
|
15021
|
-
name: "timePeriod",
|
|
15022
|
-
type: "select",
|
|
15023
|
-
options: [7, 30, 130],
|
|
15024
|
-
placeholder: 7,
|
|
15025
|
-
description: "Time period to get popular songs from",
|
|
15026
|
-
},
|
|
15027
|
-
{
|
|
15028
|
-
name: "rankType",
|
|
15029
|
-
type: "select",
|
|
15030
|
-
options: ["popular", "surging"],
|
|
15031
|
-
placeholder: "popular",
|
|
15032
|
-
description: "Get popular or surging songs",
|
|
15033
|
-
},
|
|
15034
|
-
{
|
|
15035
|
-
name: "newOnBoard",
|
|
15036
|
-
type: "boolean",
|
|
15037
|
-
placeholder: false,
|
|
15038
|
-
description: "New to top 100",
|
|
15039
|
-
},
|
|
15040
|
-
{
|
|
15041
|
-
name: "commercialMusic",
|
|
15042
|
-
type: "boolean",
|
|
15043
|
-
placeholder: false,
|
|
15044
|
-
description: "Approved for business use?",
|
|
15045
|
-
},
|
|
15046
|
-
{
|
|
15047
|
-
name: "countryCode",
|
|
15048
|
-
type: "select",
|
|
15049
|
-
options: [
|
|
15050
|
-
"AR",
|
|
15051
|
-
"AU",
|
|
15052
|
-
"AT",
|
|
15053
|
-
"BH",
|
|
15054
|
-
"BD",
|
|
15055
|
-
"BY",
|
|
15056
|
-
"BE",
|
|
15057
|
-
"BR",
|
|
15058
|
-
"BG",
|
|
15059
|
-
"KH",
|
|
15060
|
-
"CA",
|
|
15061
|
-
"CL",
|
|
15062
|
-
"CO",
|
|
15063
|
-
"HR",
|
|
15064
|
-
"CZ",
|
|
15065
|
-
"DK",
|
|
15066
|
-
"EG",
|
|
15067
|
-
"EE",
|
|
15068
|
-
"FI",
|
|
15069
|
-
"FR",
|
|
15070
|
-
"DE",
|
|
15071
|
-
"GR",
|
|
15072
|
-
"HU",
|
|
15073
|
-
"IS",
|
|
15074
|
-
"ID",
|
|
15075
|
-
"IQ",
|
|
15076
|
-
"IE",
|
|
15077
|
-
"IL",
|
|
15078
|
-
"IT",
|
|
15079
|
-
"JP",
|
|
15080
|
-
"JO",
|
|
15081
|
-
"KZ",
|
|
15082
|
-
"KW",
|
|
15083
|
-
"LV",
|
|
15084
|
-
"LB",
|
|
15085
|
-
"LT",
|
|
15086
|
-
"LU",
|
|
15087
|
-
"MO",
|
|
15088
|
-
"MY",
|
|
15089
|
-
"MX",
|
|
15090
|
-
"MA",
|
|
15091
|
-
"MM",
|
|
15092
|
-
"NL",
|
|
15093
|
-
"NZ",
|
|
15094
|
-
"NG",
|
|
15095
|
-
"NO",
|
|
15096
|
-
"OM",
|
|
15097
|
-
"PK",
|
|
15098
|
-
"PE",
|
|
15099
|
-
"PH",
|
|
15100
|
-
"PL",
|
|
15101
|
-
"PT",
|
|
15102
|
-
"QA",
|
|
15103
|
-
"RO",
|
|
15104
|
-
"SA",
|
|
15105
|
-
"SG",
|
|
15106
|
-
"SK",
|
|
15107
|
-
"ZA",
|
|
15108
|
-
"KR",
|
|
15109
|
-
"ES",
|
|
15110
|
-
"SE",
|
|
15111
|
-
"CH",
|
|
15112
|
-
"TW",
|
|
15113
|
-
"TH",
|
|
15114
|
-
"TR",
|
|
15115
|
-
"UA",
|
|
15116
|
-
"AE",
|
|
15117
|
-
"GB",
|
|
15118
|
-
"US",
|
|
15119
|
-
"UZ",
|
|
15120
|
-
"VN",
|
|
15121
|
-
],
|
|
15122
|
-
placeholder: "US",
|
|
15123
|
-
description: "Country code to get popular songs from",
|
|
15124
|
-
},
|
|
15125
|
-
],
|
|
15126
|
-
sampleResponse: {
|
|
15127
|
-
pagination: { page: 1, size: 20, total: 99, has_more: true },
|
|
15128
|
-
sound_list: [
|
|
15129
|
-
{
|
|
15130
|
-
author: "Kendrick Lamar & SZA",
|
|
15131
|
-
clip_id: "7439295283975702544",
|
|
15132
|
-
country_code: "US",
|
|
15133
|
-
cover:
|
|
15134
|
-
"https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA.jpeg",
|
|
15135
|
-
duration: 59,
|
|
15136
|
-
if_cml: false,
|
|
15137
|
-
is_search: false,
|
|
15138
|
-
link: "https://www.tiktok.com/music/x-7439295283975702544",
|
|
15139
|
-
on_list_times: null,
|
|
15140
|
-
promoted: false,
|
|
15141
|
-
rank: 1,
|
|
15142
|
-
rank_diff: 1,
|
|
15143
|
-
rank_diff_type: 1,
|
|
15144
|
-
related_items: [
|
|
15145
|
-
{
|
|
15146
|
-
item_id: 7471072183498968000,
|
|
15147
|
-
cover_uri:
|
|
15148
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/okBHO2mfIziLmqiRAIBuSoi0RJK1AA6EjtlUIC~tplv-noop.image?x-expires=1739850666&x-signature=rSlo%2B3RvQP2glzGrGsq1zH0D5xc%3D",
|
|
15149
|
-
},
|
|
15150
|
-
{
|
|
15151
|
-
item_id: 7470693402884017000,
|
|
15152
|
-
cover_uri:
|
|
15153
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/ogmvU6wCzBt6tC7wiI4BE0ZPBEE6SgYx3iZA0~tplv-noop.image?x-expires=1739850666&x-signature=u6957GlkV7Nx5a8stX0dARQAuyk%3D",
|
|
15154
|
-
},
|
|
15155
|
-
{
|
|
15156
|
-
item_id: 7471283959708569000,
|
|
15157
|
-
cover_uri:
|
|
15158
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oEXE6OFrfEDrktBAOFlgfHElnvIDRndDSKW1VB~tplv-noop.image?x-expires=1739850669&x-signature=2Xs01Qvm2Ziv5HSPtNX%2BUITit4k%3D",
|
|
15159
|
-
},
|
|
15160
|
-
{
|
|
15161
|
-
item_id: 7469634694192270000,
|
|
15162
|
-
cover_uri:
|
|
15163
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/ocSDa0jAEFdAQVFgnMiAseXfJgkRBVEqSIDgdt~tplv-noop.image?x-expires=1739850675&x-signature=awA0krmSyKP6DecOGsoYm246%2B7c%3D",
|
|
15164
|
-
},
|
|
15165
|
-
],
|
|
15166
|
-
song_id: "7440101671265486864",
|
|
15167
|
-
title: "luther",
|
|
15168
|
-
trend: [
|
|
15169
|
-
{ time: 1739145600, value: 0.15 },
|
|
15170
|
-
{ time: 1739232000, value: 0.42 },
|
|
15171
|
-
{ time: 1739318400, value: 0.5 },
|
|
15172
|
-
{ time: 1739404800, value: 0.59 },
|
|
15173
|
-
{ time: 1739491200, value: 0.63 },
|
|
15174
|
-
{ time: 1739577600, value: 0.9 },
|
|
15175
|
-
{ time: 1739664000, value: 1 },
|
|
15176
|
-
],
|
|
15177
|
-
url_title: "luther",
|
|
15178
|
-
},
|
|
15179
|
-
{
|
|
15180
|
-
author: "J Balvin",
|
|
15181
|
-
clip_id: "6806083515436779522",
|
|
15182
|
-
country_code: "US",
|
|
15183
|
-
cover:
|
|
15184
|
-
"https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oYfXAiqBHmo4IgE88a9F5tJDBeAQNIZolzQCAB.jpeg",
|
|
15185
|
-
duration: 60,
|
|
15186
|
-
if_cml: false,
|
|
15187
|
-
is_search: false,
|
|
15188
|
-
link: "https://www.tiktok.com/music/x-6806083515436779522",
|
|
15189
|
-
on_list_times: null,
|
|
15190
|
-
promoted: false,
|
|
15191
|
-
rank: 2,
|
|
15192
|
-
rank_diff: 2,
|
|
15193
|
-
rank_diff_type: 1,
|
|
15194
|
-
related_items: [
|
|
15195
|
-
{
|
|
15196
|
-
item_id: 7471445414588288000,
|
|
15197
|
-
cover_uri:
|
|
15198
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068/oEIjLqgfuqqPKkG8Cge8LDASV7gQBienC8XP0I~tplv-noop.image?x-expires=1739850662&x-signature=keAZeA2MTSNJLYU1Hm4zcIbydWk%3D",
|
|
15199
|
-
},
|
|
15200
|
-
{
|
|
15201
|
-
item_id: 7470946284015193000,
|
|
15202
|
-
cover_uri:
|
|
15203
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oIKXkQjgG5fEECi8AIeHAEE3gLHNmPHIA4gje4~tplv-noop.image?x-expires=1739850663&x-signature=ir1wNixQKgrQzVJjOKwJjF%2BkCa4%3D",
|
|
15204
|
-
},
|
|
15205
|
-
{
|
|
15206
|
-
item_id: 7471167007275159000,
|
|
15207
|
-
cover_uri:
|
|
15208
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oUi6k2FqIEBgmexEu1nEdDgBrQW7Vu0fAAcFVR~tplv-noop.image?x-expires=1739850662&x-signature=n859At5lO5bBXly3qmTBy21Dkck%3D",
|
|
15209
|
-
},
|
|
15210
|
-
{
|
|
15211
|
-
item_id: 7470970172791197000,
|
|
15212
|
-
cover_uri:
|
|
15213
|
-
"https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oIF9uAGOjSDuFEQnSrFfDBgVBNp5XiITReD7Ex~tplv-noop.image?x-expires=1739850663&x-signature=%2Bj5xbm5qZC98osMbMRFv%2B3Lnp6c%3D",
|
|
15214
|
-
},
|
|
15215
|
-
],
|
|
15216
|
-
song_id: "6803589005066635265",
|
|
15217
|
-
title: "Azul",
|
|
15218
|
-
trend: [
|
|
15219
|
-
{ time: 1739145600, value: 0.72 },
|
|
15220
|
-
{ time: 1739232000, value: 0.64 },
|
|
15221
|
-
{ time: 1739318400, value: 0.65 },
|
|
15222
|
-
{ time: 1739404800, value: 0.69 },
|
|
15223
|
-
{ time: 1739491200, value: 0.63 },
|
|
15224
|
-
{ time: 1739577600, value: 0.96 },
|
|
15225
|
-
{ time: 1739664000, value: 1 },
|
|
15226
|
-
],
|
|
15227
|
-
url_title: "Azul",
|
|
15228
|
-
},
|
|
15254
|
+
"avatar_uri": "tos-useast8-avt-0068-tx2/854b3c5321e71c2b39808f2414fd6f6d",
|
|
15255
|
+
"aweme_count": 0,
|
|
15256
|
+
"bold_fields": null,
|
|
15257
|
+
"can_message_follow_status_list": [0, 1, 2, 4],
|
|
15258
|
+
"can_set_geofencing": null,
|
|
15259
|
+
"cha_list": null,
|
|
15260
|
+
"comment_filter_status": 0,
|
|
15261
|
+
"comment_setting": 0,
|
|
15262
|
+
"commerce_user_level": 0,
|
|
15263
|
+
"cover_url": null,
|
|
15264
|
+
"custom_verify": "",
|
|
15265
|
+
"cv_level": "",
|
|
15266
|
+
"download_prompt_ts": 0,
|
|
15267
|
+
"enabled_filter_all_comments": false,
|
|
15268
|
+
"enterprise_verify_reason": "",
|
|
15269
|
+
"events": null,
|
|
15270
|
+
"fake_data_info": {},
|
|
15271
|
+
"fb_expire_time": 0,
|
|
15272
|
+
"follow_status": 0,
|
|
15273
|
+
"follower_count": 351972,
|
|
15274
|
+
"follower_status": 0,
|
|
15275
|
+
"followers_detail": null,
|
|
15276
|
+
"following_count": 83,
|
|
15277
|
+
"friends_status": 0,
|
|
15278
|
+
"geofencing": null,
|
|
15279
|
+
"hide_search": false,
|
|
15280
|
+
"homepage_bottom_toast": null,
|
|
15281
|
+
"ins_id": "",
|
|
15282
|
+
"is_ad_fake": false,
|
|
15283
|
+
"is_block": false,
|
|
15284
|
+
"is_discipline_member": false,
|
|
15285
|
+
"is_mute": 0,
|
|
15286
|
+
"is_mute_lives": 0,
|
|
15287
|
+
"is_mute_non_story_post": 0,
|
|
15288
|
+
"is_mute_story": 0,
|
|
15289
|
+
"is_star": false,
|
|
15290
|
+
"item_list": null,
|
|
15291
|
+
"live_agreement": 0,
|
|
15292
|
+
"live_commerce": false,
|
|
15293
|
+
"live_verify": 0,
|
|
15294
|
+
"mention_status": 1,
|
|
15295
|
+
"mutual_relation_avatars": null,
|
|
15296
|
+
"name_field": "nickname",
|
|
15297
|
+
"need_points": null,
|
|
15298
|
+
"need_recommend": 0,
|
|
15299
|
+
"nickname": "Laughtime1986",
|
|
15300
|
+
"platform_sync_info": null,
|
|
15301
|
+
"prevent_download": false,
|
|
15302
|
+
"relative_users": null,
|
|
15303
|
+
"reply_with_video_flag": 4,
|
|
15304
|
+
"room_id": 0,
|
|
15305
|
+
"search_highlight": null,
|
|
15306
|
+
"search_user_desc": "laughtime1986",
|
|
15307
|
+
"search_user_name": "Laughtime1986",
|
|
15308
|
+
"sec_uid": "MS4wLjABAAAA3uwdmZmEhsnR2rbKSHN1yo2kvDY3hCNt6AIGfDAMc9FEPn2yo0S_j9BSdjpG8cRW",
|
|
15309
|
+
"secret": 0,
|
|
15310
|
+
"shield_comment_notice": 0,
|
|
15311
|
+
"shield_digg_notice": 0,
|
|
15312
|
+
"shield_edit_field_info": null,
|
|
15313
|
+
"shield_follow_notice": 0,
|
|
15314
|
+
"short_id": "0",
|
|
15315
|
+
"show_image_bubble": false,
|
|
15316
|
+
"special_account": {
|
|
15317
|
+
"special_account_list": null
|
|
15318
|
+
},
|
|
15319
|
+
"special_lock": 1,
|
|
15320
|
+
"status": 1,
|
|
15321
|
+
"stitch_setting": 0,
|
|
15322
|
+
"story_status": 0,
|
|
15323
|
+
"total_favorited": 0,
|
|
15324
|
+
"type_label": null,
|
|
15325
|
+
"uid": "7491526739996935214",
|
|
15326
|
+
"unique_id": "laughtime1986",
|
|
15327
|
+
"user_canceled": false,
|
|
15328
|
+
"user_mode": 1,
|
|
15329
|
+
"user_now_pack_info": {},
|
|
15330
|
+
"user_period": 0,
|
|
15331
|
+
"user_profile_guide": null,
|
|
15332
|
+
"user_rate": 1,
|
|
15333
|
+
"user_spark_info": {},
|
|
15334
|
+
"user_tags": null,
|
|
15335
|
+
"verification_type": 0,
|
|
15336
|
+
"verify_info": "",
|
|
15337
|
+
"video_icon": {
|
|
15338
|
+
"height": 720,
|
|
15339
|
+
"uri": "",
|
|
15340
|
+
"url_list": [],
|
|
15341
|
+
"url_prefix": null,
|
|
15342
|
+
"width": 720
|
|
15343
|
+
},
|
|
15344
|
+
"white_cover_url": null,
|
|
15345
|
+
"with_commerce_entry": false,
|
|
15346
|
+
"with_shop_entry": false
|
|
15347
|
+
},
|
|
15348
|
+
"music": {
|
|
15349
|
+
"author": "Laughtime1986",
|
|
15350
|
+
"duration": 74,
|
|
15351
|
+
"id": 7629303098707676000,
|
|
15352
|
+
"title": "original sound - laughtime1986",
|
|
15353
|
+
"play_url": "https://v16m.tiktokcdn-us.com/97ae89bc8075850bd77733c977bc94fb/69ea32ca/video/tos/useast8/tos-useast8-v-27dcd7-tx2/osHEBiA0I70QQ5KtMAgJRqiBw8Q4uifF0uBd1n/?a=1233&bti=NEBzbmQxZmR2bndsQGo6OjZALnAjYG1lb2IrbGhxYCMxNDNg&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=250&bt=125&ft=gKfIn8s6ogVP12NvHcWt.IxRNGBO63_45SY&mime_type=audio_mpeg&qs=6&rc=OmVlZzdpO2U8NmY2aDU1N0BpM2trdm45cm1lOjMzaTU8NEAuLTQuYjUzXmExYV5iMF9iYSM1LTNxMmRzaWRhLS1kMTJzcw%3D%3D&vvpl=1&l=20260416145237BFFC8571A9B23E058740&btag=e00090000&shp=d05b14bd&shcp=-",
|
|
15354
|
+
"matched_song": {}
|
|
15355
|
+
},
|
|
15356
|
+
"is_eligible_for_commission": false,
|
|
15357
|
+
"is_paid_partnership": false,
|
|
15358
|
+
"is_ad": false,
|
|
15359
|
+
"url": "https://www.tiktok.com/@laughtime1986/video/7629303091011079455",
|
|
15360
|
+
"shop_product_url": null
|
|
15361
|
+
}
|
|
15229
15362
|
],
|
|
15363
|
+
"cursor": 30
|
|
15230
15364
|
},
|
|
15231
15365
|
},
|
|
15366
|
+
// {
|
|
15367
|
+
// name: "Get popular songs",
|
|
15368
|
+
// method: "GET",
|
|
15369
|
+
// description:
|
|
15370
|
+
// "This endpoint doesn't work right now :( Looks like its down even on TikToks website :( https://ads.tiktok.com/business/creativecenter/inspiration/popular/music/pc/en. Sadly we have to wait for it to be back up since that's what we were scraping. Get popular songs from TikTok. If you want to check out the page this is actually scraping, check out: https://ads.tiktok.com/business/creativecenter/inspiration/popular/music/pc/en",
|
|
15371
|
+
// fullDescription: "Gets the current trending and popular songs/sounds on TikTok, sourced from the TikTok Creative Center. Returns `sound_list`, an array of song objects each with `title`, `author`, `clip_id`, `rank`, `cover` image URL, `duration`, `link` to the sound page, and a `trend` array showing popularity over time. Filter by country, time period (7/30/120 days), rank type (popular vs surging), and commercial music approval.",
|
|
15372
|
+
// path: "/v1/tiktok/songs/popular",
|
|
15373
|
+
// youtubeId: "YMOQjj9seaY",
|
|
15374
|
+
// params: [
|
|
15375
|
+
// {
|
|
15376
|
+
// name: "page",
|
|
15377
|
+
// type: "number",
|
|
15378
|
+
// placeholder: 1,
|
|
15379
|
+
// description: "Page number",
|
|
15380
|
+
// },
|
|
15381
|
+
// {
|
|
15382
|
+
// name: "timePeriod",
|
|
15383
|
+
// type: "select",
|
|
15384
|
+
// options: [7, 30, 130],
|
|
15385
|
+
// placeholder: 7,
|
|
15386
|
+
// description: "Time period to get popular songs from",
|
|
15387
|
+
// },
|
|
15388
|
+
// {
|
|
15389
|
+
// name: "rankType",
|
|
15390
|
+
// type: "select",
|
|
15391
|
+
// options: ["popular", "surging"],
|
|
15392
|
+
// placeholder: "popular",
|
|
15393
|
+
// description: "Get popular or surging songs",
|
|
15394
|
+
// },
|
|
15395
|
+
// {
|
|
15396
|
+
// name: "newOnBoard",
|
|
15397
|
+
// type: "boolean",
|
|
15398
|
+
// placeholder: false,
|
|
15399
|
+
// description: "New to top 100",
|
|
15400
|
+
// },
|
|
15401
|
+
// {
|
|
15402
|
+
// name: "commercialMusic",
|
|
15403
|
+
// type: "boolean",
|
|
15404
|
+
// placeholder: false,
|
|
15405
|
+
// description: "Approved for business use?",
|
|
15406
|
+
// },
|
|
15407
|
+
// {
|
|
15408
|
+
// name: "countryCode",
|
|
15409
|
+
// type: "select",
|
|
15410
|
+
// options: [
|
|
15411
|
+
// "AR",
|
|
15412
|
+
// "AU",
|
|
15413
|
+
// "AT",
|
|
15414
|
+
// "BH",
|
|
15415
|
+
// "BD",
|
|
15416
|
+
// "BY",
|
|
15417
|
+
// "BE",
|
|
15418
|
+
// "BR",
|
|
15419
|
+
// "BG",
|
|
15420
|
+
// "KH",
|
|
15421
|
+
// "CA",
|
|
15422
|
+
// "CL",
|
|
15423
|
+
// "CO",
|
|
15424
|
+
// "HR",
|
|
15425
|
+
// "CZ",
|
|
15426
|
+
// "DK",
|
|
15427
|
+
// "EG",
|
|
15428
|
+
// "EE",
|
|
15429
|
+
// "FI",
|
|
15430
|
+
// "FR",
|
|
15431
|
+
// "DE",
|
|
15432
|
+
// "GR",
|
|
15433
|
+
// "HU",
|
|
15434
|
+
// "IS",
|
|
15435
|
+
// "ID",
|
|
15436
|
+
// "IQ",
|
|
15437
|
+
// "IE",
|
|
15438
|
+
// "IL",
|
|
15439
|
+
// "IT",
|
|
15440
|
+
// "JP",
|
|
15441
|
+
// "JO",
|
|
15442
|
+
// "KZ",
|
|
15443
|
+
// "KW",
|
|
15444
|
+
// "LV",
|
|
15445
|
+
// "LB",
|
|
15446
|
+
// "LT",
|
|
15447
|
+
// "LU",
|
|
15448
|
+
// "MO",
|
|
15449
|
+
// "MY",
|
|
15450
|
+
// "MX",
|
|
15451
|
+
// "MA",
|
|
15452
|
+
// "MM",
|
|
15453
|
+
// "NL",
|
|
15454
|
+
// "NZ",
|
|
15455
|
+
// "NG",
|
|
15456
|
+
// "NO",
|
|
15457
|
+
// "OM",
|
|
15458
|
+
// "PK",
|
|
15459
|
+
// "PE",
|
|
15460
|
+
// "PH",
|
|
15461
|
+
// "PL",
|
|
15462
|
+
// "PT",
|
|
15463
|
+
// "QA",
|
|
15464
|
+
// "RO",
|
|
15465
|
+
// "SA",
|
|
15466
|
+
// "SG",
|
|
15467
|
+
// "SK",
|
|
15468
|
+
// "ZA",
|
|
15469
|
+
// "KR",
|
|
15470
|
+
// "ES",
|
|
15471
|
+
// "SE",
|
|
15472
|
+
// "CH",
|
|
15473
|
+
// "TW",
|
|
15474
|
+
// "TH",
|
|
15475
|
+
// "TR",
|
|
15476
|
+
// "UA",
|
|
15477
|
+
// "AE",
|
|
15478
|
+
// "GB",
|
|
15479
|
+
// "US",
|
|
15480
|
+
// "UZ",
|
|
15481
|
+
// "VN",
|
|
15482
|
+
// ],
|
|
15483
|
+
// placeholder: "US",
|
|
15484
|
+
// description: "Country code to get popular songs from",
|
|
15485
|
+
// },
|
|
15486
|
+
// ],
|
|
15487
|
+
// sampleResponse: {
|
|
15488
|
+
// pagination: { page: 1, size: 20, total: 99, has_more: true },
|
|
15489
|
+
// sound_list: [
|
|
15490
|
+
// {
|
|
15491
|
+
// author: "Kendrick Lamar & SZA",
|
|
15492
|
+
// clip_id: "7439295283975702544",
|
|
15493
|
+
// country_code: "US",
|
|
15494
|
+
// cover:
|
|
15495
|
+
// "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA.jpeg",
|
|
15496
|
+
// duration: 59,
|
|
15497
|
+
// if_cml: false,
|
|
15498
|
+
// is_search: false,
|
|
15499
|
+
// link: "https://www.tiktok.com/music/x-7439295283975702544",
|
|
15500
|
+
// on_list_times: null,
|
|
15501
|
+
// promoted: false,
|
|
15502
|
+
// rank: 1,
|
|
15503
|
+
// rank_diff: 1,
|
|
15504
|
+
// rank_diff_type: 1,
|
|
15505
|
+
// related_items: [
|
|
15506
|
+
// {
|
|
15507
|
+
// item_id: 7471072183498968000,
|
|
15508
|
+
// cover_uri:
|
|
15509
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/okBHO2mfIziLmqiRAIBuSoi0RJK1AA6EjtlUIC~tplv-noop.image?x-expires=1739850666&x-signature=rSlo%2B3RvQP2glzGrGsq1zH0D5xc%3D",
|
|
15510
|
+
// },
|
|
15511
|
+
// {
|
|
15512
|
+
// item_id: 7470693402884017000,
|
|
15513
|
+
// cover_uri:
|
|
15514
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/ogmvU6wCzBt6tC7wiI4BE0ZPBEE6SgYx3iZA0~tplv-noop.image?x-expires=1739850666&x-signature=u6957GlkV7Nx5a8stX0dARQAuyk%3D",
|
|
15515
|
+
// },
|
|
15516
|
+
// {
|
|
15517
|
+
// item_id: 7471283959708569000,
|
|
15518
|
+
// cover_uri:
|
|
15519
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oEXE6OFrfEDrktBAOFlgfHElnvIDRndDSKW1VB~tplv-noop.image?x-expires=1739850669&x-signature=2Xs01Qvm2Ziv5HSPtNX%2BUITit4k%3D",
|
|
15520
|
+
// },
|
|
15521
|
+
// {
|
|
15522
|
+
// item_id: 7469634694192270000,
|
|
15523
|
+
// cover_uri:
|
|
15524
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/ocSDa0jAEFdAQVFgnMiAseXfJgkRBVEqSIDgdt~tplv-noop.image?x-expires=1739850675&x-signature=awA0krmSyKP6DecOGsoYm246%2B7c%3D",
|
|
15525
|
+
// },
|
|
15526
|
+
// ],
|
|
15527
|
+
// song_id: "7440101671265486864",
|
|
15528
|
+
// title: "luther",
|
|
15529
|
+
// trend: [
|
|
15530
|
+
// { time: 1739145600, value: 0.15 },
|
|
15531
|
+
// { time: 1739232000, value: 0.42 },
|
|
15532
|
+
// { time: 1739318400, value: 0.5 },
|
|
15533
|
+
// { time: 1739404800, value: 0.59 },
|
|
15534
|
+
// { time: 1739491200, value: 0.63 },
|
|
15535
|
+
// { time: 1739577600, value: 0.9 },
|
|
15536
|
+
// { time: 1739664000, value: 1 },
|
|
15537
|
+
// ],
|
|
15538
|
+
// url_title: "luther",
|
|
15539
|
+
// },
|
|
15540
|
+
// {
|
|
15541
|
+
// author: "J Balvin",
|
|
15542
|
+
// clip_id: "6806083515436779522",
|
|
15543
|
+
// country_code: "US",
|
|
15544
|
+
// cover:
|
|
15545
|
+
// "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oYfXAiqBHmo4IgE88a9F5tJDBeAQNIZolzQCAB.jpeg",
|
|
15546
|
+
// duration: 60,
|
|
15547
|
+
// if_cml: false,
|
|
15548
|
+
// is_search: false,
|
|
15549
|
+
// link: "https://www.tiktok.com/music/x-6806083515436779522",
|
|
15550
|
+
// on_list_times: null,
|
|
15551
|
+
// promoted: false,
|
|
15552
|
+
// rank: 2,
|
|
15553
|
+
// rank_diff: 2,
|
|
15554
|
+
// rank_diff_type: 1,
|
|
15555
|
+
// related_items: [
|
|
15556
|
+
// {
|
|
15557
|
+
// item_id: 7471445414588288000,
|
|
15558
|
+
// cover_uri:
|
|
15559
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068/oEIjLqgfuqqPKkG8Cge8LDASV7gQBienC8XP0I~tplv-noop.image?x-expires=1739850662&x-signature=keAZeA2MTSNJLYU1Hm4zcIbydWk%3D",
|
|
15560
|
+
// },
|
|
15561
|
+
// {
|
|
15562
|
+
// item_id: 7470946284015193000,
|
|
15563
|
+
// cover_uri:
|
|
15564
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oIKXkQjgG5fEECi8AIeHAEE3gLHNmPHIA4gje4~tplv-noop.image?x-expires=1739850663&x-signature=ir1wNixQKgrQzVJjOKwJjF%2BkCa4%3D",
|
|
15565
|
+
// },
|
|
15566
|
+
// {
|
|
15567
|
+
// item_id: 7471167007275159000,
|
|
15568
|
+
// cover_uri:
|
|
15569
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oUi6k2FqIEBgmexEu1nEdDgBrQW7Vu0fAAcFVR~tplv-noop.image?x-expires=1739850662&x-signature=n859At5lO5bBXly3qmTBy21Dkck%3D",
|
|
15570
|
+
// },
|
|
15571
|
+
// {
|
|
15572
|
+
// item_id: 7470970172791197000,
|
|
15573
|
+
// cover_uri:
|
|
15574
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oIF9uAGOjSDuFEQnSrFfDBgVBNp5XiITReD7Ex~tplv-noop.image?x-expires=1739850663&x-signature=%2Bj5xbm5qZC98osMbMRFv%2B3Lnp6c%3D",
|
|
15575
|
+
// },
|
|
15576
|
+
// ],
|
|
15577
|
+
// song_id: "6803589005066635265",
|
|
15578
|
+
// title: "Azul",
|
|
15579
|
+
// trend: [
|
|
15580
|
+
// { time: 1739145600, value: 0.72 },
|
|
15581
|
+
// { time: 1739232000, value: 0.64 },
|
|
15582
|
+
// { time: 1739318400, value: 0.65 },
|
|
15583
|
+
// { time: 1739404800, value: 0.69 },
|
|
15584
|
+
// { time: 1739491200, value: 0.63 },
|
|
15585
|
+
// { time: 1739577600, value: 0.96 },
|
|
15586
|
+
// { time: 1739664000, value: 1 },
|
|
15587
|
+
// ],
|
|
15588
|
+
// url_title: "Azul",
|
|
15589
|
+
// },
|
|
15590
|
+
// ],
|
|
15591
|
+
// },
|
|
15592
|
+
// },
|
|
15232
15593
|
{
|
|
15233
15594
|
name: "Get popular creators",
|
|
15234
15595
|
method: "GET",
|
|
@@ -15406,107 +15767,107 @@ export const tiktokBaseApis = {
|
|
|
15406
15767
|
},
|
|
15407
15768
|
},
|
|
15408
15769
|
},
|
|
15409
|
-
{
|
|
15410
|
-
|
|
15411
|
-
|
|
15412
|
-
|
|
15413
|
-
|
|
15414
|
-
|
|
15415
|
-
|
|
15416
|
-
|
|
15417
|
-
|
|
15418
|
-
|
|
15419
|
-
|
|
15420
|
-
|
|
15421
|
-
|
|
15422
|
-
|
|
15423
|
-
|
|
15424
|
-
|
|
15425
|
-
|
|
15426
|
-
|
|
15427
|
-
|
|
15428
|
-
|
|
15429
|
-
|
|
15430
|
-
|
|
15431
|
-
|
|
15432
|
-
|
|
15433
|
-
|
|
15434
|
-
|
|
15435
|
-
|
|
15436
|
-
|
|
15437
|
-
|
|
15438
|
-
|
|
15439
|
-
|
|
15440
|
-
|
|
15441
|
-
|
|
15442
|
-
|
|
15443
|
-
|
|
15444
|
-
|
|
15445
|
-
|
|
15446
|
-
|
|
15447
|
-
|
|
15448
|
-
|
|
15449
|
-
|
|
15450
|
-
|
|
15451
|
-
|
|
15452
|
-
|
|
15453
|
-
|
|
15454
|
-
|
|
15455
|
-
|
|
15456
|
-
|
|
15457
|
-
|
|
15458
|
-
|
|
15459
|
-
|
|
15460
|
-
|
|
15461
|
-
|
|
15462
|
-
|
|
15463
|
-
|
|
15464
|
-
|
|
15465
|
-
|
|
15466
|
-
|
|
15467
|
-
|
|
15468
|
-
|
|
15469
|
-
|
|
15470
|
-
|
|
15471
|
-
|
|
15472
|
-
|
|
15473
|
-
|
|
15474
|
-
|
|
15475
|
-
|
|
15476
|
-
|
|
15477
|
-
|
|
15478
|
-
|
|
15479
|
-
|
|
15480
|
-
|
|
15481
|
-
|
|
15482
|
-
|
|
15483
|
-
|
|
15484
|
-
|
|
15485
|
-
|
|
15486
|
-
|
|
15487
|
-
|
|
15488
|
-
|
|
15489
|
-
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
|
|
15493
|
-
|
|
15494
|
-
|
|
15495
|
-
|
|
15496
|
-
|
|
15497
|
-
|
|
15498
|
-
|
|
15499
|
-
|
|
15500
|
-
|
|
15501
|
-
|
|
15502
|
-
|
|
15503
|
-
|
|
15504
|
-
|
|
15505
|
-
|
|
15506
|
-
|
|
15507
|
-
|
|
15508
|
-
|
|
15509
|
-
},
|
|
15770
|
+
// {
|
|
15771
|
+
// name: "Get popular videos",
|
|
15772
|
+
// method: "GET",
|
|
15773
|
+
// description:
|
|
15774
|
+
// "This endpoint doesn't work right now :( Looks like its down even on TikToks website :( https://ads.tiktok.com/business/creativecenter/inspiration/popular/pc/en. Sadly we have to wait for it to be back up since that's what we were scraping. Get popular videos from TikTok. Filter by time period, country, and sort by likes, views (hot), comments, or reposts.",
|
|
15775
|
+
// fullDescription: "Discovers trending and popular TikTok videos, filterable by time period (7 or 30 days) and country. Returns a list of video objects each with `title`, `item_url` (link to the TikTok), `cover`, `region`, and engagement stats. Sortable by likes, views (hot), comments, or reposts.",
|
|
15776
|
+
// path: "/v1/tiktok/videos/popular",
|
|
15777
|
+
// params: [
|
|
15778
|
+
// {
|
|
15779
|
+
// name: "period",
|
|
15780
|
+
// type: "select",
|
|
15781
|
+
// options: [7, 30],
|
|
15782
|
+
// placeholder: 7,
|
|
15783
|
+
// description: "Time period in days (7 or 30)",
|
|
15784
|
+
// },
|
|
15785
|
+
// {
|
|
15786
|
+
// name: "page",
|
|
15787
|
+
// type: "number",
|
|
15788
|
+
// placeholder: 1,
|
|
15789
|
+
// description: "Page number",
|
|
15790
|
+
// },
|
|
15791
|
+
// {
|
|
15792
|
+
// name: "orderBy",
|
|
15793
|
+
// type: "select",
|
|
15794
|
+
// options: ["like", "hot", "comment", "repost"],
|
|
15795
|
+
// placeholder: "hot",
|
|
15796
|
+
// description:
|
|
15797
|
+
// "Sort videos by likes, views (hot), comments, or reposts",
|
|
15798
|
+
// },
|
|
15799
|
+
// {
|
|
15800
|
+
// name: "countryCode",
|
|
15801
|
+
// type: "select",
|
|
15802
|
+
// options: [
|
|
15803
|
+
// "AU",
|
|
15804
|
+
// "BR",
|
|
15805
|
+
// "CA",
|
|
15806
|
+
// "EG",
|
|
15807
|
+
// "FR",
|
|
15808
|
+
// "DE",
|
|
15809
|
+
// "ID",
|
|
15810
|
+
// "IL",
|
|
15811
|
+
// "IT",
|
|
15812
|
+
// "JP",
|
|
15813
|
+
// "MY",
|
|
15814
|
+
// "PH",
|
|
15815
|
+
// "RU",
|
|
15816
|
+
// "SA",
|
|
15817
|
+
// "SG",
|
|
15818
|
+
// "KR",
|
|
15819
|
+
// "ES",
|
|
15820
|
+
// "TW",
|
|
15821
|
+
// "TH",
|
|
15822
|
+
// "TR",
|
|
15823
|
+
// "AE",
|
|
15824
|
+
// "GB",
|
|
15825
|
+
// "US",
|
|
15826
|
+
// "VN",
|
|
15827
|
+
// ],
|
|
15828
|
+
// placeholder: "US",
|
|
15829
|
+
// description: "Country code to get popular videos from",
|
|
15830
|
+
// },
|
|
15831
|
+
// ],
|
|
15832
|
+
// sampleResponse: {
|
|
15833
|
+
// success: true,
|
|
15834
|
+
// credits_remaining: 100,
|
|
15835
|
+
// pagination: {
|
|
15836
|
+
// has_more: true,
|
|
15837
|
+
// limit: 10,
|
|
15838
|
+
// page: 1,
|
|
15839
|
+
// total_count: 500,
|
|
15840
|
+
// },
|
|
15841
|
+
// videos: [
|
|
15842
|
+
// {
|
|
15843
|
+
// country_code: "US",
|
|
15844
|
+
// cover:
|
|
15845
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/oMJB6DZfc4hpFDAsIAUTRkiDgEhES6EexxO5Ir~tplv-noop.image?dr=18692&refresh_token=c97b5692&x-expires=1767932391&x-signature=wtv4DQu%2Fm3XYQ62Zaogu4NbjK7Q%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=83ba07fd&idc=my",
|
|
15846
|
+
// duration: 28,
|
|
15847
|
+
// id: "7581969577765014797",
|
|
15848
|
+
// item_id: "7581969577765014797",
|
|
15849
|
+
// item_url:
|
|
15850
|
+
// "https://www.tiktok.com/@mnm_pipi/video/7581969577765014797",
|
|
15851
|
+
// region: "United States",
|
|
15852
|
+
// title:
|
|
15853
|
+
// "we can't believe we are the top artist of 2025 on @TikTok globally 🥹🖤 thank you EYEKONS for your endless support, dance covers, KATSEYE core videos, and more!! WE LOVE YOU",
|
|
15854
|
+
// },
|
|
15855
|
+
// {
|
|
15856
|
+
// country_code: "US",
|
|
15857
|
+
// cover:
|
|
15858
|
+
// "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/o4jILIfcAtSQrCoSCBqFExHXQCLfjfNuGADDIX~tplv-noop.image?dr=18692&refresh_token=46945800&x-expires=1767932404&x-signature=la1OfvS%2FUjDl57mygO49OXTo%2FBk%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=83ba07fd&idc=my",
|
|
15859
|
+
// duration: 41,
|
|
15860
|
+
// id: "7579011087673150751",
|
|
15861
|
+
// item_id: "7579011087673150751",
|
|
15862
|
+
// item_url:
|
|
15863
|
+
// "https://www.tiktok.com/@mnm_pipi/video/7579011087673150751",
|
|
15864
|
+
// region: "United States",
|
|
15865
|
+
// title:
|
|
15866
|
+
// "Try TikTok's Creator Search Insights and boost your reach from search results.",
|
|
15867
|
+
// },
|
|
15868
|
+
// ],
|
|
15869
|
+
// },
|
|
15870
|
+
// },
|
|
15510
15871
|
{
|
|
15511
15872
|
name: "Get popular hashtags",
|
|
15512
15873
|
method: "GET",
|