HypeAuditor For TikTok
Endpoint
Get media of TikTok channel:
GET https://hypeauditor.com/api/method/auditor.tiktokMedia/?channelId={channelId}
Note:
ChannelId
is TikTok channel id (6557821753438371845
forlittlebig
) this value can be retrieved from TikTok report in pathresult.report.basic.id
.
Endpoint returns the media metrics and media objects.
Response Object
Attributes | Type | |
---|---|---|
most_recent_media | object | Metrics object with data about most recent media by date ranges |
most_engaging_media | object | Metrics object with data about media with most engaging rate by date ranges |
most_viewed_media | object | Metrics object with data about most viewed media by date ranges |
most_commented_media | object | Metrics object with data about most commented media by date ranges |
most_viral_media | object | Metrics object with data about most viral media by date ranges |
media | object | Hash map where keys is media id and value is media object |
Metrics Object
Contains 7d
, 30d
, 90d
, 180d
, 365d
, all
keys, which mean date range for metric.
Attributes | Type | |
---|---|---|
performance | object | Hash map where keys is date range and value is object with media ids in media key |
Media Object
Media object contain {channelId}
objects:
Attributes | Type | |
---|---|---|
basic | object | Main data about media |
metrics | object | Metrics data about media |
Media basic Object
Attributes | Type | |
---|---|---|
id | string | Media identifier, can be used to map with metrics |
text | object | Description of media |
thumbnail | string | Link to thumbnail image stored in our cdn |
thumbnail_gif | string | Link to thumbnail gif |
exact_create_time | int | Timestamp of creation time |
Media metrics Object
Every metric is object with value e.g. { "value": 3798 }
Attributes | Type | |
---|---|---|
view_count | int | Amount of views |
likes_count | int | Amount of likes |
comments_count | int | Amount of comments |
shares_count | int | Amount of shares |
length_sec | int | Length of video in seconds |
virality | float | Virality index |
er | float | Engaging rate |
challenges_count | int | Count of challenges marked in this media |
Requests
Set YOUR_ID
and YOUR_TOKEN
from HypeAuditor.
curl -X POST \
https://hypeauditor.com/api/method/auditor.tiktokMedia \
-H 'content-type: application/x-www-form-urlencoded' \
-H 'x-auth-id: %YOUR_ID%' \
-H 'x-auth-token: %YOUR_TOKEN%' \
-d channelId=littlebig \
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://hypeauditor.com/api/method/auditor.tiktokMedia',
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => [
'channelId' => '6557821753438371845'
],
CURLOPT_HTTPHEADER => [
'x-auth-id: YOUR_ID',
'x-auth-token: YOUR_TOKEN'
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo 'cURL Error #:' . $err;
} else {
echo $response;
}
Sample request
GET https://hypeauditor.com/api/method/auditor.tiktokMedia/?channelId=6557821753438371845
Sample response
{
"result": {
"most_recent_media": {
"performance": {
"7d": {
"media_ids": [
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7129383370848619778",
"7128874126298696962"
]
},
"30d": {
"media_ids": [
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7129383370848619778",
"7128874126298696962"
]
},
"90d": {
"media_ids": [
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7129383370848619778",
"7128874126298696962",
"7115853415875497218",
"7114323545643109634",
"7114117830957714689"
]
},
"180d": {
"media_ids": [
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7129383370848619778",
"7128874126298696962",
"7115853415875497218",
"7114323545643109634",
"7114117830957714689"
]
},
"365d": {
"media_ids": [
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7129383370848619778",
"7128874126298696962",
"7115853415875497218",
"7114323545643109634",
"7114117830957714689"
]
},
"all": {
"media_ids": [
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7129383370848619778",
"7128874126298696962",
"7115853415875497218",
"7114323545643109634",
"7114117830957714689"
]
}
}
},
"most_engaging_media": {
"performance": {
"7d": {
"media_ids": [
"7129383370848619778",
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7128874126298696962"
]
},
"30d": {
"media_ids": [
"7129383370848619778",
"7130500907690659074",
"7130125028477242625",
"7129755685977476353",
"7128874126298696962"
]
},
"90d": {
"media_ids": [
"7129383370848619778",
"7113230744998219009",
"7112671209686338817",
"7130500907690659074",
"7114117830957714689",
"7114323545643109634",
"7130125028477242625",
"7129755685977476353"
]
},
"180d": {
"media_ids": [
"7129383370848619778",
"7113230744998219009",
"7112671209686338817",
"7130500907690659074",
"7114117830957714689",
"7114323545643109634",
"7130125028477242625",
"7129755685977476353"
]
},
"365d": {
"media_ids": [
"7129383370848619778",
"7113230744998219009",
"7002465956521970945",
"7112671209686338817",
"7130500907690659074",
"7024122184712883457",
"7018882510901841153",
"7114117830957714689"
]
},
"all": {
"media_ids": [
"6824383575803055365",
"6969686441978842370",
"6901208693350616321",
"6893829129628650754",
"6808858131058232582",
"6891955495746145537",
"6951786550875131138",
"6966239976744963330"
]
}
}
},
"most_viewed_media": {
"performance": {
"7d": {
"media_ids": [
"7128874126298696962",
"7129755685977476353",
"7130500907690659074",
"7129383370848619778",
"7130125028477242625"
]
},
"30d": {
"media_ids": [
"7128874126298696962",
"7129755685977476353",
"7130500907690659074",
"7129383370848619778",
"7130125028477242625"
]
},
"90d": {
"media_ids": [
"7128874126298696962",
"7129755685977476353",
"7114117830957714689",
"7130500907690659074",
"7113230744998219009",
"7112671209686338817",
"7129383370848619778",
"7130125028477242625"
]
},
"180d": {
"media_ids": [
"7128874126298696962",
"7129755685977476353",
"7114117830957714689",
"7130500907690659074",
"7113230744998219009",
"7112671209686338817",
"7129383370848619778",
"7130125028477242625"
]
},
"365d": {
"media_ids": [
"7018882510901841153",
"7024122184712883457",
"7031501085080620290",
"7004718145600589057",
"7062685612402314497",
"7128874126298696962",
"7003373903942782210",
"7002465956521970945"
]
},
"all": {
"media_ids": [
"6970026617703845122",
"6888983063246753025",
"6787244858076646662",
"6987261911716973825",
"6710545548656512262",
"6790566357067910405",
"6792048682159131910",
"6795835290188614918"
]
}
}
},
"most_commented_media": {
"performance": {
"7d": {
"media_ids": [
"7128874126298696962",
"7129383370848619778",
"7129755685977476353",
"7130500907690659074",
"7130125028477242625"
]
},
"30d": {
"media_ids": [
"7128874126298696962",
"7129383370848619778",
"7129755685977476353",
"7130500907690659074",
"7130125028477242625"
]
},
"90d": {
"media_ids": [
"7113230744998219009",
"7112671209686338817",
"7128874126298696962",
"7129383370848619778",
"7114117830957714689",
"7129755685977476353",
"7130500907690659074",
"7130125028477242625"
]
},
"180d": {
"media_ids": [
"7113230744998219009",
"7112671209686338817",
"7128874126298696962",
"7129383370848619778",
"7114117830957714689",
"7129755685977476353",
"7130500907690659074",
"7130125028477242625"
]
},
"365d": {
"media_ids": [
"7018882510901841153",
"7024122184712883457",
"7002465956521970945",
"7031501085080620290",
"7062685612402314497",
"7034527505134390529",
"7004718145600589057",
"7003373903942782210"
]
},
"all": {
"media_ids": [
"6970026617703845122",
"6888983063246753025",
"6811116671529405702",
"6787244858076646662",
"6804804740220783877",
"6987261911716973825",
"7018882510901841153",
"6710545548656512262"
]
}
}
},
"most_viral_media": {
"performance": {
"7d": {
"media_ids": [
"7129755685977476353",
"7128874126298696962",
"7129383370848619778",
"7130500907690659074",
"7130125028477242625"
]
},
"30d": {
"media_ids": [
"7129755685977476353",
"7128874126298696962",
"7129383370848619778",
"7130500907690659074",
"7130125028477242625"
]
},
"90d": {
"media_ids": [
"7129755685977476353",
"7128874126298696962",
"7129383370848619778",
"7113230744998219009",
"7112671209686338817",
"7130500907690659074",
"7114117830957714689",
"7114323545643109634"
]
},
"180d": {
"media_ids": [
"7129755685977476353",
"7128874126298696962",
"7129383370848619778",
"7113230744998219009",
"7112671209686338817",
"7130500907690659074",
"7114117830957714689",
"7114323545643109634"
]
},
"365d": {
"media_ids": [
"7018882510901841153",
"7024122184712883457",
"7002465956521970945",
"7034527505134390529",
"7031501085080620290",
"7004718145600589057",
"7129755685977476353",
"7013764102568922370"
]
},
"all": {
"media_ids": [
"6888983063246753025",
"6970026617703845122",
"6787244858076646662",
"6710545548656512262",
"6615528595261492485",
"6761773535431036165",
"6674021627019136261",
"6761352665499782405"
]
}
}
},
"media": {
"6901208693350616321": {
"basic": {
"id": "6901208693350616321",
"text": "Lollipop balloon 🍭 @sonyatayurskaya",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6901208693350616321.jpg?w=200&till=1663416408&sign=d56af4a278d5f991a1482f9532359039",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/b26aa8780dcc4245929c926e3ab51bb3_1606812866?x-expires=1660755600&x-signature=WSHPOzWH9EW%2F5dOfkZ3OR7pwL9Y%3D",
"exact_create_time": 1606812864
},
"metrics": {
"views_count": {
"value": 2400000
},
"likes_count": {
"value": 329900
},
"comments_count": {
"value": 1447
},
"shares_count": {
"value": 1963
},
"length_sec": {
"value": 13
},
"virality": {
"value": 0.08
},
"er": {
"value": 13.887916666666666
},
"challenges_count": {
"value": 0
}
}
},
"6969686441978842370": {
"basic": {
"id": "6969686441978842370",
"text": "NEW EP OUT NOW 🎧",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6969686441978842370.jpg?w=200&till=1663416408&sign=d4b1fab184e6f2f48f8e63f0b789978c",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/8d4ab59d0d69410ab775cf41edd6a6cd_1622756591?x-expires=1622793600&x-signature=x3%2BUpMWjjnhKN7u54sDPbLRitj4%3D",
"exact_create_time": 1622756589
},
"metrics": {
"views_count": {
"value": 3798
},
"likes_count": {
"value": 533
},
"comments_count": {
"value": 33
},
"shares_count": {
"value": 4
},
"length_sec": {
"value": 14
},
"virality": {
"value": 0.11
},
"er": {
"value": 15.00789889415482
},
"challenges_count": {
"value": 0
}
}
},
"6615528595261492485": {
"basic": {
"id": "6615528595261492485",
"text": "Let’s start #skibidichallenge #skibidi",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6615528595261492485.jpg?w=200&till=1663416408&sign=7bff4029223fedfa0ac9bb157466adfb",
"thumbnail_gif": "https://p77-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/b804c1137a6141528e4a9843aa4152d6?x-expires=1638666000&x-signature=3uEahnRtRsQt2Fg6o5DFvolQjIE%3D",
"exact_create_time": 1540297781
},
"metrics": {
"views_count": {
"value": 7500000
},
"likes_count": {
"value": 504800
},
"comments_count": {
"value": 3157
},
"shares_count": {
"value": 18100
},
"length_sec": {
"value": 15
},
"virality": {
"value": 0.24
},
"er": {
"value": 7.014093333333333
},
"challenges_count": {
"value": 0
}
}
},
"7130125028477242625": {
"basic": {
"id": "7130125028477242625",
"text": "Rocket star 🚀",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7130125028477242625.jpg?w=200&till=1663416408&sign=52b60c18af94bcbf2a84ad2acd3a2af0",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/2b893d8a0d7340ada2ddefbf78464b03_1660111613?x-expires=1660755600&x-signature=z0q%2FhJLCjNm%2Bk2V%2BcMums132fdg%3D",
"exact_create_time": 1660111609
},
"metrics": {
"views_count": {
"value": 116600
},
"likes_count": {
"value": 8411
},
"comments_count": {
"value": 49
},
"shares_count": {
"value": 6
},
"length_sec": {
"value": 20
},
"virality": {
"value": 0.01
},
"er": {
"value": 7.260720411663808
},
"challenges_count": {
"value": 0
}
}
},
"7031501085080620290": {
"basic": {
"id": "7031501085080620290",
"text": "«A LOT OF MONEY» OUT NOW 💰",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7031501085080620290.jpg?w=200&till=1663416408&sign=e449cab5896a086d21d8137066556d15",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/5aba70d61247427a9ebb87513cb8d998_1637148928?x-expires=1660755600&x-signature=%2BHS1fiW24LSItpVPOcmNEENmg6U%3D",
"exact_create_time": 1637148925
},
"metrics": {
"views_count": {
"value": 3100000
},
"likes_count": {
"value": 108700
},
"comments_count": {
"value": 629
},
"shares_count": {
"value": 607
},
"length_sec": {
"value": 9
},
"virality": {
"value": 0.02
},
"er": {
"value": 3.5463225806451613
},
"challenges_count": {
"value": 0
}
}
},
"6970026617703845122": {
"basic": {
"id": "6970026617703845122",
"text": "Инь и Ян @danya_milokhin",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6970026617703845122.jpg?w=200&till=1663416408&sign=1636e244a0b80a0a9b6b95a1202cd69d",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/50ce4b6657ec488e9ad3d031dfe1101f_1622835793?x-expires=1660755600&x-signature=xoesLy%2FJgkqeDiD%2BuxyAdCsojFo%3D",
"exact_create_time": 1622835789
},
"metrics": {
"views_count": {
"value": 41300000
},
"likes_count": {
"value": 3500000
},
"comments_count": {
"value": 19100
},
"shares_count": {
"value": 39600
},
"length_sec": {
"value": 9
},
"virality": {
"value": 0.1
},
"er": {
"value": 8.616707021791768
},
"challenges_count": {
"value": 0
}
}
},
"6987261911716973825": {
"basic": {
"id": "6987261911716973825",
"text": "Oh No! 😬",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6987261911716973825.jpg?w=200&till=1663416408&sign=1757531d6d31037110eab01d41850396",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/06de9c5cdf1744b980a8a8e6c3ac3292_1626848695?x-expires=1660755600&x-signature=rnNwpOt%2FIX8wKPAAGTQwGDZvbP0%3D",
"exact_create_time": 1626848693
},
"metrics": {
"views_count": {
"value": 28600000
},
"likes_count": {
"value": 2000000
},
"comments_count": {
"value": 6444
},
"shares_count": {
"value": 5427
},
"length_sec": {
"value": 17
},
"virality": {
"value": 0.02
},
"er": {
"value": 7.0345139860139865
},
"challenges_count": {
"value": 0
}
}
},
"6710545548656512262": {
"basic": {
"id": "6710545548656512262",
"text": "#imok",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6710545548656512262.jpg?w=200&till=1663416408&sign=262230cb5ad1286d4acb0d1cba8924f9",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/0dfdfab701464eb1ad2731faf7a228b7?x-expires=1638666000&x-signature=NrNRMlKLD%2BnWlK1vrQBsXwu7Y3o%3D",
"exact_create_time": 1562420639
},
"metrics": {
"views_count": {
"value": 24500000
},
"likes_count": {
"value": 1400000
},
"comments_count": {
"value": 5609
},
"shares_count": {
"value": 38600
},
"length_sec": {
"value": 10
},
"virality": {
"value": 0.16
},
"er": {
"value": 5.894730612244898
},
"challenges_count": {
"value": 0
}
}
},
"6790566357067910405": {
"basic": {
"id": "6790566357067910405",
"text": "Ilich’s new tattoo #gobananas #gobananaschallenge",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6790566357067910405.jpg?w=200&till=1663416408&sign=f5c28acde62c3a6f3c8f171265275210",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/b0e80cd06f8e437a892923a06008c04f_1581051943?x-expires=1646060400&x-signature=KmZMEnugJIRcw9xXhcDjftZyAwM%3D",
"exact_create_time": 1581051940
},
"metrics": {
"views_count": {
"value": 20400000
},
"likes_count": {
"value": 849600
},
"comments_count": {
"value": 3045
},
"shares_count": {
"value": 6770
},
"length_sec": {
"value": 10
},
"virality": {
"value": 0.03
},
"er": {
"value": 4.2128186274509805
},
"challenges_count": {
"value": 0
}
}
},
"7129755685977476353": {
"basic": {
"id": "7129755685977476353",
"text": "Our travels be like this…",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7129755685977476353.jpg?w=200&till=1663416408&sign=8f3ed98c725ea1a17a3a18df8fd917a9",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/16c1ad3dfe9d414db972a25fd37ccfba_1660025618?x-expires=1660755600&x-signature=5fe2eyigIFiEuMvxGDAxciX%2BUGE%3D",
"exact_create_time": 1660025614
},
"metrics": {
"views_count": {
"value": 205600
},
"likes_count": {
"value": 11800
},
"comments_count": {
"value": 58
},
"shares_count": {
"value": 277
},
"length_sec": {
"value": 9
},
"virality": {
"value": 0.13
},
"er": {
"value": 5.902237354085603
},
"challenges_count": {
"value": 0
}
}
},
"6888983063246753025": {
"basic": {
"id": "6888983063246753025",
"text": "Face/Off",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6888983063246753025.jpg?w=200&till=1663416408&sign=32eafea4284a14648719ddc2adee0d9b",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/f37908901c05496aa1bf958e0df66613_1603966366?x-expires=1660755600&x-signature=Bz0a1a6eSTctgrZ3ggdEyLiWGjU%3D",
"exact_create_time": 1603966363
},
"metrics": {
"views_count": {
"value": 40000000
},
"likes_count": {
"value": 3900000
},
"comments_count": {
"value": 18700
},
"shares_count": {
"value": 55900
},
"length_sec": {
"value": 20
},
"virality": {
"value": 0.14
},
"er": {
"value": 9.936499999999999
},
"challenges_count": {
"value": 0
}
}
},
"7115853415875497218": {
"basic": {
"id": "7115853415875497218",
"text": "Ilia flippin’",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7115853415875497218.jpg?w=200&till=1663416408&sign=4347b39f70d9c39aa2369df7e894641b",
"thumbnail_gif": "https://p9-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/c92f4e4f929449ec9d26a95300b6901c_1656788740?x-expires=1659722400&x-signature=tiBzf2Vbu3vi4JKlFk2Joy1SFn4%3D",
"exact_create_time": 1656788737
},
"metrics": {
"views_count": {
"value": 18800
},
"likes_count": {
"value": 1046
},
"comments_count": {
"value": 35
},
"shares_count": {
"value": 2
},
"length_sec": {
"value": 28
},
"virality": {
"value": 0.01
},
"er": {
"value": 5.76063829787234
},
"challenges_count": {
"value": 0
}
}
},
"7011413762662026497": {
"basic": {
"id": "7011413762662026497",
"text": "«WELCOME TO THE INTERNET» EP coming SEPTEMBER 30 ⏰",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7011413762662026497.jpg?w=200&till=1663416408&sign=121e4b252f302edd953ad30fdb6227fe",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/dd85b71cf65846a2a888cf4599ff1b93_1632471983?x-expires=1660755600&x-signature=I2zmM2AzfUNVaHiw69lrMTvW%2Fkk%3D",
"exact_create_time": 1632471980
},
"metrics": {
"views_count": {
"value": 709900
},
"likes_count": {
"value": 42900
},
"comments_count": {
"value": 227
},
"shares_count": {
"value": 200
},
"length_sec": {
"value": 9
},
"virality": {
"value": 0.03
},
"er": {
"value": 6.103253979433723
},
"challenges_count": {
"value": 0
}
}
},
"7003373903942782210": {
"basic": {
"id": "7003373903942782210",
"text": "TURN IT UP with @olivertree feat. @tommycashofficial OUT NOW! OLIVER TREE & LITTLE BIG «WELCOME TO THE INTERNET» EP coming SEPTEMBER 30",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7003373903942782210.jpg?w=200&till=1663416408&sign=272ecb75470ed4b74a11af3fdeff886f",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/21650447c7cc4323a19ca3d8a98f38b2_1630600057?x-expires=1660755600&x-signature=jbuaUHT8pvZQMuJKQ46ME6cvb5Q%3D",
"exact_create_time": 1630600054
},
"metrics": {
"views_count": {
"value": 1100000
},
"likes_count": {
"value": 64500
},
"comments_count": {
"value": 367
},
"shares_count": {
"value": 239
},
"length_sec": {
"value": 11
},
"virality": {
"value": 0.02
},
"er": {
"value": 5.918727272727272
},
"challenges_count": {
"value": 0
}
}
},
"6804804740220783877": {
"basic": {
"id": "6804804740220783877",
"text": "#unovisionchallenge",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6804804740220783877.jpg?w=200&till=1663416408&sign=ed7d81276bdd4b4e80ea56dea42c0034",
"thumbnail_gif": "https://m-p16.akamaized.net/obj/tos-maliva-p-0068/9461306705434129a7dc1bc2b3d2462d_1584367073",
"exact_create_time": 1584367069
},
"metrics": {
"views_count": {
"value": 13069415
},
"likes_count": {
"value": 1519165
},
"comments_count": {
"value": 6726
},
"shares_count": {
"value": 10116
},
"length_sec": {
"value": 14
},
"virality": {
"value": 0.08
},
"er": {
"value": 11.752683651104507
},
"challenges_count": {
"value": 1
}
}
},
"7114323545643109634": {
"basic": {
"id": "7114323545643109634",
"text": "They see me rollin.",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7114323545643109634.jpg?w=200&till=1663416408&sign=a54d1c532756495b49f5c8509d5b7428",
"thumbnail_gif": "https://p9-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/6c49479dbb354b28a47a5ccf0b7b52d8_1656432539?x-expires=1659722400&x-signature=2pn24gT7yS0j4dJzaHmYAG5KrFQ%3D",
"exact_create_time": 1656432536
},
"metrics": {
"views_count": {
"value": 76500
},
"likes_count": {
"value": 5676
},
"comments_count": {
"value": 44
},
"shares_count": {
"value": 10
},
"length_sec": {
"value": 3
},
"virality": {
"value": 0.01
},
"er": {
"value": 7.490196078431373
},
"challenges_count": {
"value": 0
}
}
},
"7007343962117737729": {
"basic": {
"id": "7007343962117737729",
"text": "Get inspired and create some TURN IT UP videos!",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7007343962117737729.jpg?w=200&till=1663416408&sign=bbebd13beec7c2760def46e2dbabe421",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/b7ec3f8a255e4182a10b4395ed5d977a_1631524408?x-expires=1660755600&x-signature=EL2qwEgqv0T%2BeVFLjPn9bWF4cyc%3D",
"exact_create_time": 1631524406
},
"metrics": {
"views_count": {
"value": 728500
},
"likes_count": {
"value": 32600
},
"comments_count": {
"value": 196
},
"shares_count": {
"value": 116
},
"length_sec": {
"value": 7
},
"virality": {
"value": 0.02
},
"er": {
"value": 4.517776252573782
},
"challenges_count": {
"value": 0
}
}
},
"7041272115189779714": {
"basic": {
"id": "7041272115189779714",
"text": "💧 LITTLE BIG & AQUA 💧 #barbiegirl",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7041272115189779714.jpg?w=200&till=1663416408&sign=17a9bde8efa95a5369a4a4bf70cbfc94",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/c70cc058788f48c28bae28bb34d12759_1639423923?x-expires=1660755600&x-signature=RhJ8usEmMEJK4NjrmwGwJPlQbQI%3D",
"exact_create_time": 1639423920
},
"metrics": {
"views_count": {
"value": 608300
},
"likes_count": {
"value": 38700
},
"comments_count": {
"value": 258
},
"shares_count": {
"value": 140
},
"length_sec": {
"value": 15
},
"virality": {
"value": 0.02
},
"er": {
"value": 6.427420680585237
},
"challenges_count": {
"value": 1
}
}
},
"7114117830957714689": {
"basic": {
"id": "7114117830957714689",
"text": "Show us your tattoos. GENERATION CANCELLATION Out Now!",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7114117830957714689.jpg?w=200&till=1663416408&sign=0b76cf4c8d4a1c61a6163fa8c59ade4a",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/a9c61bde863649fb8517065313c1f75c_1656384647?x-expires=1660755600&x-signature=fO6%2Bx5Xf%2Bb8CjT4m35qGf4zIubY%3D",
"exact_create_time": 1656384644
},
"metrics": {
"views_count": {
"value": 174900
},
"likes_count": {
"value": 14000
},
"comments_count": {
"value": 94
},
"shares_count": {
"value": 59
},
"length_sec": {
"value": 22
},
"virality": {
"value": 0.03
},
"er": {
"value": 8.092052601486564
},
"challenges_count": {
"value": 0
}
}
},
"7024122184712883457": {
"basic": {
"id": "7024122184712883457",
"text": "guess who's back?#littlebig",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7024122184712883457.jpg?w=200&till=1663416408&sign=7fce129b5a3c30f59dce99ae375021bf",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/c13d69dadbc549b6933dfe321ff5bf98_1635430894?x-expires=1660755600&x-signature=qZWdIifYX%2BvAwbVBO4IDEnEALYI%3D",
"exact_create_time": 1635430890
},
"metrics": {
"views_count": {
"value": 5900000
},
"likes_count": {
"value": 497100
},
"comments_count": {
"value": 2193
},
"shares_count": {
"value": 5818
},
"length_sec": {
"value": 17
},
"virality": {
"value": 0.1
},
"er": {
"value": 8.561203389830508
},
"challenges_count": {
"value": 1
}
}
},
"7018882510901841153": {
"basic": {
"id": "7018882510901841153",
"text": "I’m trapped in your laptop 🧼",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7018882510901841153.jpg?w=200&till=1663416408&sign=09377a01f2a6bd6d15ae318d802f7351",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/267f005fa6e9498ba0c0753e161eeea3_1634210935?x-expires=1660755600&x-signature=7n6gPDudF2ACI8wiuFuUeMu2O2Y%3D",
"exact_create_time": 1634210934
},
"metrics": {
"views_count": {
"value": 10100000
},
"likes_count": {
"value": 822900
},
"comments_count": {
"value": 6022
},
"shares_count": {
"value": 7792
},
"length_sec": {
"value": 8
},
"virality": {
"value": 0.08
},
"er": {
"value": 8.284297029702971
},
"challenges_count": {
"value": 0
}
}
},
"6674021627019136261": {
"basic": {
"id": "6674021627019136261",
"text": "Повторите танец и поделитесь с #skibidiromantic",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6674021627019136261.jpg?w=200&till=1663416408&sign=f3c2bddf7d3d78e1a510bd895260be58",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/976bb4bad84445058b7b4ed7f7837980?x-expires=1638666000&x-signature=cBMdALcy8HrEBQxk9aqJxg7tZ5Y%3D",
"exact_create_time": 1553916751
},
"metrics": {
"views_count": {
"value": 6500000
},
"likes_count": {
"value": 516400
},
"comments_count": {
"value": 1267
},
"shares_count": {
"value": 13400
},
"length_sec": {
"value": 15
},
"virality": {
"value": 0.21
},
"er": {
"value": 8.170261538461538
},
"challenges_count": {
"value": 0
}
}
},
"7130500907690659074": {
"basic": {
"id": "7130500907690659074",
"text": "Banana muscle man💪 My workout be like…",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7130500907690659074.jpg?w=200&till=1663416408&sign=4cdff88ada232ecccc485f848fb12c35",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/14c1d1598e264470adee60163db3f7e7_1660199127?x-expires=1660755600&x-signature=urManUPlYJ%2FvaBgL8Mn9XOGrTZc%3D",
"exact_create_time": 1660199124
},
"metrics": {
"views_count": {
"value": 174100
},
"likes_count": {
"value": 15000
},
"comments_count": {
"value": 51
},
"shares_count": {
"value": 83
},
"length_sec": {
"value": 7
},
"virality": {
"value": 0.05
},
"er": {
"value": 8.69270534175761
},
"challenges_count": {
"value": 0
}
}
},
"7062685612402314497": {
"basic": {
"id": "7062685612402314497",
"text": "Ebobo 11/02 🤪 @ТА САМАЯ ГЛЮКОЗА",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7062685612402314497.jpg?w=200&till=1663416408&sign=133e00214484dc33f22d64efc380715a",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/9cad08809e3e470388ce9d8116f47c03_1644409640?x-expires=1660755600&x-signature=6e16Qre3%2BnJupYXk8U6Ups64Ghw%3D",
"exact_create_time": 1644409638
},
"metrics": {
"views_count": {
"value": 1700000
},
"likes_count": {
"value": 110200
},
"comments_count": {
"value": 578
},
"shares_count": {
"value": 243
},
"length_sec": {
"value": 14
},
"virality": {
"value": 0.01
},
"er": {
"value": 6.53064705882353
},
"challenges_count": {
"value": 0
}
}
},
"6951786550875131138": {
"basic": {
"id": "6951786550875131138",
"text": "King of the city 🏙",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6951786550875131138.jpg?w=200&till=1663416408&sign=346b59178cb50e47e7808248e91e828a",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/e5c59bf5fb8f45439ae5c56576d1ce78_1618588942?x-expires=1660755600&x-signature=XuTPxM3s8DSCPqijd5Cd%2B717ojY%3D",
"exact_create_time": 1618588940
},
"metrics": {
"views_count": {
"value": 4700000
},
"likes_count": {
"value": 591900
},
"comments_count": {
"value": 1488
},
"shares_count": {
"value": 929
},
"length_sec": {
"value": 11
},
"virality": {
"value": 0.02
},
"er": {
"value": 12.645042553191491
},
"challenges_count": {
"value": 0
}
}
},
"6893829129628650754": {
"basic": {
"id": "6893829129628650754",
"text": "Pump It Up",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6893829129628650754.jpg?w=200&till=1663416408&sign=76c7a8e52c173383172d1cbc4969dae7",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/0915257831064698b27819e4d330fdf0_1605094677?x-expires=1660755600&x-signature=dam5RF9ISxTH%2Fv5oISeoJFtLAnU%3D",
"exact_create_time": 1605094675
},
"metrics": {
"views_count": {
"value": 2700000
},
"likes_count": {
"value": 366300
},
"comments_count": {
"value": 1198
},
"shares_count": {
"value": 1283
},
"length_sec": {
"value": 12
},
"virality": {
"value": 0.05
},
"er": {
"value": 13.658555555555555
},
"challenges_count": {
"value": 0
}
}
},
"6761773535431036165": {
"basic": {
"id": "6761773535431036165",
"text": "#gobananas like Ilich",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6761773535431036165.jpg?w=200&till=1663416408&sign=9fa9e570ac85417e73f3de0ceb503acd",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/797c248c17ff40218f32b1d0f2b252b0_1574348093?x-expires=1638666000&x-signature=xbvzdPje62u8r2y729iurxsLlzg%3D",
"exact_create_time": 1574348088
},
"metrics": {
"views_count": {
"value": 8600000
},
"likes_count": {
"value": 621600
},
"comments_count": {
"value": 1643
},
"shares_count": {
"value": 13600
},
"length_sec": {
"value": 12
},
"virality": {
"value": 0.16
},
"er": {
"value": 7.405151162790697
},
"challenges_count": {
"value": 0
}
}
},
"7112671209686338817": {
"basic": {
"id": "7112671209686338817",
"text": "https://youtu.be/7Yy4RP4FMNk",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7112671209686338817.jpg?w=200&till=1663416408&sign=0094479ec26eb7c969edf235451adf3a",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/e923f53fdb63456bae9ff06e92e0606d_1656047831?x-expires=1660755600&x-signature=ao5ExizKjF9rRDACPb%2F6e%2F9uJCI%3D",
"exact_create_time": 1656047828
},
"metrics": {
"views_count": {
"value": 132900
},
"likes_count": {
"value": 11400
},
"comments_count": {
"value": 175
},
"shares_count": {
"value": 118
},
"length_sec": {
"value": 11
},
"virality": {
"value": 0.09
},
"er": {
"value": 8.79834462001505
},
"challenges_count": {
"value": 0
}
}
},
"6795835290188614918": {
"basic": {
"id": "6795835290188614918",
"text": "#gobananas #gobananaschallenge",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6795835290188614918.jpg?w=200&till=1663416408&sign=cb25b0659075cf01dd937cecccb9b00b",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/7dc7171ef21f40058f15c3df4f08c904_1582278715?x-expires=1646060400&x-signature=CtSA6gDl9crvdlhKXLiFbCtFw3U%3D",
"exact_create_time": 1582278708
},
"metrics": {
"views_count": {
"value": 14900000
},
"likes_count": {
"value": 1100000
},
"comments_count": {
"value": 3384
},
"shares_count": {
"value": 8581
},
"length_sec": {
"value": 15
},
"virality": {
"value": 0.06
},
"er": {
"value": 7.462852348993289
},
"challenges_count": {
"value": 0
}
}
},
"7013764102568922370": {
"basic": {
"id": "7013764102568922370",
"text": "«WELCOME TO THE INTERNET» EP + «THE INTERNET» MUSIC VIDEO with @Oliver Tree OUT NOW! Link in bio!",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7013764102568922370.jpg?w=200&till=1663416408&sign=a109dd95ce083776848f5d7e7e5da05c",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/7ad0b23e031a4b01bb55c59c3b3785bc_1633019214?x-expires=1660755600&x-signature=9z1KyQsRXj1tgLKrRpEuTnDQ%2BtE%3D",
"exact_create_time": 1633019211
},
"metrics": {
"views_count": {
"value": 953700
},
"likes_count": {
"value": 59000
},
"comments_count": {
"value": 303
},
"shares_count": {
"value": 255
},
"length_sec": {
"value": 17
},
"virality": {
"value": 0.03
},
"er": {
"value": 6.244940757051483
},
"challenges_count": {
"value": 0
}
}
},
"6787244858076646662": {
"basic": {
"id": "6787244858076646662",
"text": "#gobananas",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6787244858076646662.jpg?w=200&till=1663416408&sign=b8ab9f0a532086f1387ac4b8d956b8da",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/42b584aacad142ecb6513399b470ebef_1580278597?x-expires=1638666000&x-signature=eQ9uc%2BwomFJ0cBK9lY77nuL0EZY%3D",
"exact_create_time": 1580278595
},
"metrics": {
"views_count": {
"value": 35100000
},
"likes_count": {
"value": 1700000
},
"comments_count": {
"value": 7297
},
"shares_count": {
"value": 38900
},
"length_sec": {
"value": 8
},
"virality": {
"value": 0.11
},
"er": {
"value": 4.974920227920228
},
"challenges_count": {
"value": 0
}
}
},
"6977620512591727874": {
"basic": {
"id": "6977620512591727874",
"text": "😡",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6977620512591727874.jpg?w=200&till=1663416408&sign=2eb158a32d97b5d33ad8b9089760d345",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/614568c3ad8442d88337f46153afb976_1624603882?x-expires=1660755600&x-signature=Pb9iPuOJB4990qG0C6SreVZbAWY%3D",
"exact_create_time": 1624603879
},
"metrics": {
"views_count": {
"value": 711100
},
"likes_count": {
"value": 56900
},
"comments_count": {
"value": 283
},
"shares_count": {
"value": 214
},
"length_sec": {
"value": 19
},
"virality": {
"value": 0.03
},
"er": {
"value": 8.07157924342568
},
"challenges_count": {
"value": 0
}
}
},
"7128874126298696962": {
"basic": {
"id": "7128874126298696962",
"text": "What’s wrong with the video?",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7128874126298696962.jpg?w=200&till=1663416408&sign=d2687d6df5d860f680a5c724395bdf39",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/018838ccb327471ca22bd8378cc0453b_1659820360?x-expires=1660755600&x-signature=zjK0V%2FudBiCTkYGe7CIUjXO8YeI%3D",
"exact_create_time": 1659820357
},
"metrics": {
"views_count": {
"value": 1100000
},
"likes_count": {
"value": 46800
},
"comments_count": {
"value": 167
},
"shares_count": {
"value": 214
},
"length_sec": {
"value": 7
},
"virality": {
"value": 0.02
},
"er": {
"value": 4.289181818181818
},
"challenges_count": {
"value": 0
}
}
},
"6811116671529405702": {
"basic": {
"id": "6811116671529405702",
"text": "#unovisionchallenge",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6811116671529405702.jpg?w=200&till=1663416408&sign=c95c6b4cfbf961d00a3a592f04c3e6ca",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/cbea56823abf4c78825bff3ac01fc273_1585836690?x-expires=1646060400&x-signature=g5K4HnnyDyvLDklB3CmnCUSMDAg%3D",
"exact_create_time": 1585836681
},
"metrics": {
"views_count": {
"value": 11300000
},
"likes_count": {
"value": 1000000
},
"comments_count": {
"value": 7472
},
"shares_count": {
"value": 10200
},
"length_sec": {
"value": 14
},
"virality": {
"value": 0.09
},
"er": {
"value": 9.005946902654866
},
"challenges_count": {
"value": 0
}
}
},
"7002465956521970945": {
"basic": {
"id": "7002465956521970945",
"text": "«Turn it Up» with @olivertree feat. @tommycashofficial coming September 2",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7002465956521970945.jpg?w=200&till=1663416408&sign=55c82e80a796c53eec109b759ee98c3c",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/98ed1ba9591e4ed492114022bb0aab52_1630388659?x-expires=1660755600&x-signature=P7xmQVkPLQaZm1EoTAo2K0pEcQw%3D",
"exact_create_time": 1630388657
},
"metrics": {
"views_count": {
"value": 1100000
},
"likes_count": {
"value": 103900
},
"comments_count": {
"value": 800
},
"shares_count": {
"value": 1967
},
"length_sec": {
"value": 11
},
"virality": {
"value": 0.18
},
"er": {
"value": 9.697
},
"challenges_count": {
"value": 0
}
}
},
"6994360147833359618": {
"basic": {
"id": "6994360147833359618",
"text": "I know you like my #moustachepower 🧔🏻♀️",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6994360147833359618.jpg?w=200&till=1663416408&sign=6dc3372f09e5e31d66259e7038a396a9",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/2a0cd003e8934ce185fd0cc28a0210f1_1628501379?x-expires=1660755600&x-signature=c6BB28JYRd%2Fs%2FO3lrerQOh9xRx8%3D",
"exact_create_time": 1628501376
},
"metrics": {
"views_count": {
"value": 890400
},
"likes_count": {
"value": 63400
},
"comments_count": {
"value": 168
},
"shares_count": {
"value": 239
},
"length_sec": {
"value": 17
},
"virality": {
"value": 0.03
},
"er": {
"value": 7.166105121293801
},
"challenges_count": {
"value": 1
}
}
},
"6891955495746145537": {
"basic": {
"id": "6891955495746145537",
"text": "SUCK MY DICK 2020",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6891955495746145537.jpg?w=200&till=1663416408&sign=357dc59d9c01ee12bcdfc2598906a72d",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/2fca16b862144e399bee281b0cb11650_1604658440?x-expires=1660755600&x-signature=N7sjV1SXT0Phu8%2BaeGYXTU40OB4%3D",
"exact_create_time": 1604658436
},
"metrics": {
"views_count": {
"value": 780800
},
"likes_count": {
"value": 98400
},
"comments_count": {
"value": 1516
},
"shares_count": {
"value": 2815
},
"length_sec": {
"value": 27
},
"virality": {
"value": 0.36
},
"er": {
"value": 13.157146516393443
},
"challenges_count": {
"value": 0
}
}
},
"6998131042628488449": {
"basic": {
"id": "6998131042628488449",
"text": "🎮",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6998131042628488449.jpg?w=200&till=1663416408&sign=cb82ecd0bed7fb4af889b89f518d1960",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/cadb75403ceb420d99e0b3ded237d456_1629379358?x-expires=1660755600&x-signature=z575Xep7qwNfXawCfqJ2Y4OX2dk%3D",
"exact_create_time": 1629379356
},
"metrics": {
"views_count": {
"value": 562600
},
"likes_count": {
"value": 32700
},
"comments_count": {
"value": 103
},
"shares_count": {
"value": 75
},
"length_sec": {
"value": 14
},
"virality": {
"value": 0.01
},
"er": {
"value": 5.843938855314611
},
"challenges_count": {
"value": 0
}
}
},
"7129383370848619778": {
"basic": {
"id": "7129383370848619778",
"text": "Which outfit is better?🤤",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7129383370848619778.jpg?w=200&till=1663416408&sign=6c86c8fcafcf85f52399979ce1bc0e91",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/2856ad2c472c41a19dba473e323f064d_1659938930?x-expires=1660755600&x-signature=ccsGyz%2FBDOD85GqxYlzZZvlrjMY%3D",
"exact_create_time": 1659938928
},
"metrics": {
"views_count": {
"value": 132000
},
"likes_count": {
"value": 14200
},
"comments_count": {
"value": 122
},
"shares_count": {
"value": 190
},
"length_sec": {
"value": 5
},
"virality": {
"value": 0.14
},
"er": {
"value": 10.993939393939394
},
"challenges_count": {
"value": 0
}
}
},
"6824383575803055365": {
"basic": {
"id": "6824383575803055365",
"text": "Go Hypnodancer!",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6824383575803055365.jpg?w=200&till=1663416408&sign=decfed8ec0e63b9c7b2070c9c7720fbe",
"thumbnail_gif": "https://m-p16.akamaized.net/obj/tos-maliva-p-0068/a049ea4f5f814776b8fb7db89db3aed0_1588925625",
"exact_create_time": 1588925623
},
"metrics": {
"views_count": {
"value": 889163
},
"likes_count": {
"value": 135659
},
"comments_count": {
"value": 1272
},
"shares_count": {
"value": 2817
},
"length_sec": {
"value": 14
},
"virality": {
"value": 0.32
},
"er": {
"value": 15.716803330772871
},
"challenges_count": {
"value": 0
}
}
},
"6991101977337924866": {
"basic": {
"id": "6991101977337924866",
"text": "Ay-yay-yay 🌮",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6991101977337924866.jpg?w=200&till=1663416408&sign=d79be621ceb54579304c28ec2bdc11d5",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/c1436df4b9a442fe87d7773b25d70df5_1627742777?x-expires=1660755600&x-signature=HnZgv27%2BhaqwxPk8loEakGcWNyw%3D",
"exact_create_time": 1627742774
},
"metrics": {
"views_count": {
"value": 6900000
},
"likes_count": {
"value": 478700
},
"comments_count": {
"value": 1950
},
"shares_count": {
"value": 1573
},
"length_sec": {
"value": 13
},
"virality": {
"value": 0.02
},
"er": {
"value": 6.988739130434783
},
"challenges_count": {
"value": 0
}
}
},
"7015866838454144257": {
"basic": {
"id": "7015866838454144257",
"text": "Make the internet great again",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7015866838454144257.jpg?w=200&till=1663416408&sign=fa7c13af9601647c81a5a4bd200602c7",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/d4f558406351476cbf1f6e6aa8f60de5_1633508795?x-expires=1660755600&x-signature=986gPMZLikhL%2FwtSIPIoKpiiN6k%3D",
"exact_create_time": 1633508793
},
"metrics": {
"views_count": {
"value": 925800
},
"likes_count": {
"value": 52400
},
"comments_count": {
"value": 258
},
"shares_count": {
"value": 160
},
"length_sec": {
"value": 18
},
"virality": {
"value": 0.02
},
"er": {
"value": 5.705119896305898
},
"challenges_count": {
"value": 0
}
}
},
"6808858131058232582": {
"basic": {
"id": "6808858131058232582",
"text": "LITTLE BIG - I’m ok (quarantine version) #imok #littlebig",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6808858131058232582.jpg?w=200&till=1663416408&sign=3356ccc46d24df949d5621c85b6055c3",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/1b99514d10da416f81e5d9b8236eae15_1585310832?x-expires=1646060400&x-signature=IWYE9FphDD7lNuSxrTDN4re8rCc%3D",
"exact_create_time": 1585310824
},
"metrics": {
"views_count": {
"value": 2000000
},
"likes_count": {
"value": 270400
},
"comments_count": {
"value": 815
},
"shares_count": {
"value": 1457
},
"length_sec": {
"value": 35
},
"virality": {
"value": 0.07
},
"er": {
"value": 13.633600000000001
},
"challenges_count": {
"value": 0
}
}
},
"6966239976744963330": {
"basic": {
"id": "6966239976744963330",
"text": "Oops! 😩",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6966239976744963330.jpg?w=200&till=1663416408&sign=70b132b3616ffac64a79411cf7ae357b",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/56fe7c950622460f9a99aaaf622a9120_1621954142?x-expires=1660755600&x-signature=s51vI5Bdw92e2EbXo6PB1IP2fTk%3D",
"exact_create_time": 1621954140
},
"metrics": {
"views_count": {
"value": 2200000
},
"likes_count": {
"value": 271500
},
"comments_count": {
"value": 1472
},
"shares_count": {
"value": 804
},
"length_sec": {
"value": 12
},
"virality": {
"value": 0.04
},
"er": {
"value": 12.444363636363637
},
"challenges_count": {
"value": 0
}
}
},
"6761352665499782405": {
"basic": {
"id": "6761352665499782405",
"text": "#gobananas everywhere",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6761352665499782405.jpg?w=200&till=1663416408&sign=4126f7021177bfb2925493e8d8ad6b64",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/f5478066707b4b218db17159b65fea36_1574250106?x-expires=1638666000&x-signature=8Swft9obUOHTNY9GLDbzbhBMffQ%3D",
"exact_create_time": 1574250098
},
"metrics": {
"views_count": {
"value": 11300000
},
"likes_count": {
"value": 702100
},
"comments_count": {
"value": 2174
},
"shares_count": {
"value": 10800
},
"length_sec": {
"value": 6
},
"virality": {
"value": 0.1
},
"er": {
"value": 6.328088495575221
},
"challenges_count": {
"value": 0
}
}
},
"7034527505134390529": {
"basic": {
"id": "7034527505134390529",
"text": "Surpise NFT eggs by LITTLE BIG. More information via link in bio 🥚",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7034527505134390529.jpg?w=200&till=1663416408&sign=8ecd24cd29a63da6ed68313288a03961",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/83cc75ee17d74fd19fda74f7e2f4408d_1637853570?x-expires=1660755600&x-signature=ei3dQ8ugZEjvrxAWPhFHrlLg9ao%3D",
"exact_create_time": 1637853567
},
"metrics": {
"views_count": {
"value": 691800
},
"likes_count": {
"value": 45700
},
"comments_count": {
"value": 557
},
"shares_count": {
"value": 1215
},
"length_sec": {
"value": 16
},
"virality": {
"value": 0.18
},
"er": {
"value": 6.862098872506504
},
"challenges_count": {
"value": 0
}
}
},
"7004718145600589057": {
"basic": {
"id": "7004718145600589057",
"text": "Put your hands up in the air 🙌🏼",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7004718145600589057.jpg?w=200&till=1663416408&sign=2a00254fd570644f4bffb16cc2e09713",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/98e74d88e7dd4cb09ea80f2c024de451_1630913038?x-expires=1660755600&x-signature=aOjZYgNZITINvyAwRyM9wJNYc1I%3D",
"exact_create_time": 1630913036
},
"metrics": {
"views_count": {
"value": 2600000
},
"likes_count": {
"value": 160300
},
"comments_count": {
"value": 434
},
"shares_count": {
"value": 576
},
"length_sec": {
"value": 7
},
"virality": {
"value": 0.02
},
"er": {
"value": 6.20423076923077
},
"challenges_count": {
"value": 0
}
}
},
"6982646131989777665": {
"basic": {
"id": "6982646131989777665",
"text": "Let’s Go! 🎣",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6982646131989777665.jpg?w=200&till=1663416408&sign=6bcbce95626b6df5f447594c32eb6c6e",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/870e889e1ec248fe848555e47ee8635e_1625774005?x-expires=1660755600&x-signature=wHWJ8EV5CUu6K69%2FfkaxJyF7JY0%3D",
"exact_create_time": 1625774003
},
"metrics": {
"views_count": {
"value": 965400
},
"likes_count": {
"value": 80200
},
"comments_count": {
"value": 526
},
"shares_count": {
"value": 994
},
"length_sec": {
"value": 16
},
"virality": {
"value": 0.1
},
"er": {
"value": 8.464885021752641
},
"challenges_count": {
"value": 0
}
}
},
"6792048682159131910": {
"basic": {
"id": "6792048682159131910",
"text": "#gobananas #gobananaschallenge",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6792048682159131910.jpg?w=200&till=1663416408&sign=45ea886efe95596d31d7d30336b66d64",
"thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/f9cc975fbeeb49b1bac200863453a27a_1581397076?x-expires=1646060400&x-signature=bnNQGSL2M8UFoCfUp3IsTEd3QNk%3D",
"exact_create_time": 1581397071
},
"metrics": {
"views_count": {
"value": 15600000
},
"likes_count": {
"value": 1000000
},
"comments_count": {
"value": 4246
},
"shares_count": {
"value": 7165
},
"length_sec": {
"value": 8
},
"virality": {
"value": 0.05
},
"er": {
"value": 6.483403846153846
},
"challenges_count": {
"value": 0
}
}
},
"6993224911900740865": {
"basic": {
"id": "6993224911900740865",
"text": "NEW VIDEO OUT NOW 🧔🏻♀️👨🏻🧔🏻♀️#moustachepower",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6993224911900740865.jpg?w=200&till=1663416408&sign=ad9898554fe46efbb5117f0ee8fd3d5d",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/26106817398b4b65a91599817b9227a1_1628237061?x-expires=1660755600&x-signature=98uh5bxGvNuDbL3Oi%2FdykWbfrh0%3D",
"exact_create_time": 1628237059
},
"metrics": {
"views_count": {
"value": 543100
},
"likes_count": {
"value": 32200
},
"comments_count": {
"value": 190
},
"shares_count": {
"value": 197
},
"length_sec": {
"value": 18
},
"virality": {
"value": 0.04
},
"er": {
"value": 6.000184128153195
},
"challenges_count": {
"value": 1
}
}
},
"7113230744998219009": {
"basic": {
"id": "7113230744998219009",
"text": "Generation Cancellation OUT NOW!",
"thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7113230744998219009.jpg?w=200&till=1663416408&sign=97fddd0d735309e4f552e5a4d323df93",
"thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/def8856e0e5543fda6adee6c12d09a69_1656178101?x-expires=1660755600&x-signature=0Z%2FeG57as6G2Bu8T0Ouclu8mGkY%3D",
"exact_create_time": 1656178099
},
"metrics": {
"views_count": {
"value": 160200
},
"likes_count": {
"value": 16500
},
"comments_count": {
"value": 258
},
"shares_count": {
"value": 171
},
"length_sec": {
"value": 15
},
"virality": {
"value": 0.11
},
"er": {
"value": 10.567415730337078
},
"challenges_count": {
"value": 0
}
}
}
}
}
}