HypeAuditor For TikTok

Endpoint

Get the information of brand mentions made by a TikTok channel:

GET https://hypeauditor.com/api/method/auditor.tiktokBrandMentions/?channel={channel}

Channel is TikTok username (littlebig) from the url of TikTok channel (https://www.tiktok.com/@littlebig).

Returns the metrics history if it’s ready. Note: Metrics history must be requeste

📘

Note:

littlebig report is free, use it to test the API.

Response Object

AttributesType
mentionsobjectMentions data
mentions.performance.{time_period}.data.{channel}objectInfo about mentions from channel
mentions.performance.{time_period}.data.{channel}.posts_idsarrayIds of posts with mentions
mentions.performance.{time_period}.data.{channel}.mentioned_posts_erfloatER of mentioned posts
mentions.performance.{time_period}.data.{channel}.mentioned_posts_er_markstringString mark of ER of mentioned posts
mentions.performance.{time_period}.data.{channel}.mentioned_posts_viewsintegerSum of views on posts with mentions
mentions.performance.{time_period}.data.{channel}.mentioned_posts_views_markstringString mark of mentioned posts view
mentions.performance.{time_period}.data.{channel}.mentioned_posts_countintCount of posts with mentions
mentions.performance.{time_period}.data.{channel}.last_mentioned_posttimestampTimestamp of last mentioned post
usersobjectMentions users data
users.{channel}objectUser Object
postsobjectMentions posts data
posts.{post_id}.basicobjectPost info object
posts.{post_id}.metricsobjectPost metrics object

Requests

Set YOUR_ID and YOUR_TOKEN from HypeAuditor.

curl -X POST \
  https://hypeauditor.com/api/method/auditor.tiktokBrandMentions \
  -H 'content-type: application/x-www-form-urlencoded' \
  -H 'x-auth-id: %YOUR_ID%' \
  -H 'x-auth-token: %YOUR_TOKEN%' \
  -d channel=littlebig  \
<?php
$curl = curl_init();
curl_setopt_array($curl, [
   CURLOPT_URL => 'https://hypeauditor.com/api/method/auditor.tiktokBrandMentions',
   CURLOPT_CUSTOMREQUEST => 'POST',
   CURLOPT_POSTFIELDS => [
       'channel' => 'littlebig'
   ],
   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.tiktokBrandMentions/?channel=littlebig

Sample response

{
  "mentions": {
    "performance": {
      "7d": {
        "data": []
      },
      "30d": {
        "data": []
      },
      "90d": {
        "data": []
      },
      "180d": {
        "data": {
          "olivertree": {
            "posts_ids": [
              "7003373903942782210",
              "7002465956521970945"
            ],
            "mentioned_posts_er": 8.619307315612565,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 928200,
            "mentioned_posts_views_mark": "good",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1630600054
          },
          "tommycashofficial": {
            "posts_ids": [
              "7003373903942782210",
              "7002465956521970945"
            ],
            "mentioned_posts_er": 8.619307315612565,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 928200,
            "mentioned_posts_views_mark": "good",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1630600054
          }
        }
      },
      "365d": {
        "data": {
          "olivertree": {
            "posts_ids": [
              "7003373903942782210",
              "7002465956521970945"
            ],
            "mentioned_posts_er": 8.619307315612565,
            "mentioned_posts_er_mark": "average",
            "mentioned_posts_views": 928200,
            "mentioned_posts_views_mark": "average",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1630600054
          },
          "tommycashofficial": {
            "posts_ids": [
              "7003373903942782210",
              "7002465956521970945"
            ],
            "mentioned_posts_er": 8.619307315612565,
            "mentioned_posts_er_mark": "average",
            "mentioned_posts_views": 928200,
            "mentioned_posts_views_mark": "average",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1630600054
          },
          "dream_team_house": {
            "posts_ids": [
              "6974676519696207106"
            ],
            "mentioned_posts_er": 8.532625189681335,
            "mentioned_posts_er_mark": "average",
            "mentioned_posts_views": 593100,
            "mentioned_posts_views_mark": "fair",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1623918426
          },
          "danya_milokhin": {
            "posts_ids": [
              "6970026617703845122"
            ],
            "mentioned_posts_er": 9.001474926253687,
            "mentioned_posts_er_mark": "average",
            "mentioned_posts_views": 33900000,
            "mentioned_posts_views_mark": "excellent",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1622835789
          },
          "sonyatayurskaya": {
            "posts_ids": [
              "6957247311470742786"
            ],
            "mentioned_posts_er": 10.206634169539889,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 841100,
            "mentioned_posts_views_mark": "average",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1619860372
          }
        }
      },
      "all": {
        "data": {
          "olivertree": {
            "posts_ids": [
              "7003373903942782210",
              "7002465956521970945"
            ],
            "mentioned_posts_er": 8.619307315612565,
            "mentioned_posts_er_mark": "fair",
            "mentioned_posts_views": 928200,
            "mentioned_posts_views_mark": "average",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1630600054
          },
          "tommycashofficial": {
            "posts_ids": [
              "7003373903942782210",
              "7002465956521970945"
            ],
            "mentioned_posts_er": 8.619307315612565,
            "mentioned_posts_er_mark": "fair",
            "mentioned_posts_views": 928200,
            "mentioned_posts_views_mark": "average",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1630600054
          },
          "dream_team_house": {
            "posts_ids": [
              "6974676519696207106",
              "6803565809538059526"
            ],
            "mentioned_posts_er": 9.781194538946494,
            "mentioned_posts_er_mark": "average",
            "mentioned_posts_views": 4367439.5,
            "mentioned_posts_views_mark": "good",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1623918426
          },
          "danya_milokhin": {
            "posts_ids": [
              "6970026617703845122",
              "6803565809538059526"
            ],
            "mentioned_posts_er": 10.01561940723267,
            "mentioned_posts_er_mark": "average",
            "mentioned_posts_views": 21020889.5,
            "mentioned_posts_views_mark": "excellent",
            "mentioned_posts_count": 2,
            "last_mentioned_post": 1622835789
          },
          "sonyatayurskaya": {
            "posts_ids": [
              "6957247311470742786",
              "6917205394418912513",
              "6901208693350616321"
            ],
            "mentioned_posts_er": 10.206634169539889,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 841100,
            "mentioned_posts_views_mark": "fair",
            "mentioned_posts_count": 3,
            "last_mentioned_post": 1619860372
          },
          "_agentgirl_": {
            "posts_ids": [
              "6865329824173542661"
            ],
            "mentioned_posts_er": 8.199857142857143,
            "mentioned_posts_er_mark": "fair",
            "mentioned_posts_views": 7000000,
            "mentioned_posts_views_mark": "very_good",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1598459167
          },
          "ba.bich_": {
            "posts_ids": [
              "6803565809538059526"
            ],
            "mentioned_posts_er": 11.029763888211654,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 8141779,
            "mentioned_posts_views_mark": "excellent",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1584078610
          },
          "mahavsekupleno": {
            "posts_ids": [
              "6803565809538059526"
            ],
            "mentioned_posts_er": 11.029763888211654,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 8141779,
            "mentioned_posts_views_mark": "excellent",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1584078610
          },
          "mimimizhka": {
            "posts_ids": [
              "6803565809538059526"
            ],
            "mentioned_posts_er": 11.029763888211654,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 8141779,
            "mentioned_posts_views_mark": "excellent",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1584078610
          },
          "anastasia_yseeva_17": {
            "posts_ids": [
              "6803565809538059526"
            ],
            "mentioned_posts_er": 11.029763888211654,
            "mentioned_posts_er_mark": "good",
            "mentioned_posts_views": 8141779,
            "mentioned_posts_views_mark": "excellent",
            "mentioned_posts_count": 1,
            "last_mentioned_post": 1584078610
          }
        }
      }
    }
  },
  "users": {
    "olivertree": {
      "id": "6676194683532821509",
      "uid": "MS4wLjABAAAA6OZsMwGpsYIqGFECkjof_F0G51c2aOrR5agm_h1IDiBmfymc3fE88HA2g6aadGZm",
      "username": "olivertree",
      "social_type": 3,
      "title": "Oliver Tree",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/6676194683532821509.jpg?w=150&till=1647496800&sign=4587e18a80439a15fec0220287f081a9",
      "description": "TICKETS TO MY FINAL TOUR BELOW",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 12300000,
      "tier": 147,
      "is_brand": 0
    },
    "tommycashofficial": {
      "id": "6948747102030824453",
      "uid": "MS4wLjABAAAAFTMCcoBo8K5v9oLLUWj07M3HaI4bYjdxRevWs_GtBKzD5iQF6RhmCjGbtljYe7iH",
      "username": "tommycashofficial",
      "social_type": 3,
      "title": "tommycashofficial",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/6948747102030824453.jpg?w=150&till=1647496800&sign=137666e075cdaf7c8755235bc1d2a1a7",
      "description": "",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 80500,
      "tier": 136,
      "is_brand": 0
    },
    "dream_team_house": {
      "id": "6800415199171232774",
      "uid": "MS4wLjABAAAAV4b_hB48uaWIoPAnDuVAes7kojT4-sYuwDnM_WFJbMFHSHKOLlPbSF3bAq452B9n",
      "username": "dream_team_house",
      "social_type": 3,
      "title": "dream_team_house",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/6800415199171232774.jpg?w=150&till=1647496800&sign=d9f764098ef3e374dfd1b4a4ba9a6317",
      "description": "Та самая Команда Мечты😍☀️\nПОДПИСЫВАЙСЯ НА НАС В ИНСТ↗️\nАмбассадор @cheetos_rus",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 12700000,
      "tier": 147,
      "is_brand": false
    },
    "danya_milokhin": {
      "id": "6650921630771118086",
      "uid": "MS4wLjABAAAAok6zMx9ikzrSKsq6TzOMlGYNYzVmZgbeCtHtqT0JoYy6uAkMnCToJGFR43sLu6HD",
      "username": "danya_milokhin",
      "social_type": 3,
      "title": "danya_milokhin",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/6650921630771118086.jpg?w=150&till=1647496800&sign=b91dbfab0749552118678fed5c7d922b",
      "description": "🦄🦄🦄",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 16400000,
      "tier": 147,
      "is_brand": 0
    },
    "sonyatayurskaya": {
      "id": "6705830104390747141",
      "uid": "MS4wLjABAAAAjMf_3AU-zTtbmoS9cssHqDSUIooepuuwnYKUEcZlaHCOcH70Y5OG_nw1n7XjC3PA",
      "username": "sonyatayurskaya",
      "social_type": 3,
      "title": "SonyTayurskaya",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/6705830104390747141.jpg?w=150&till=1647496800&sign=394d1d835f3276dee8872ab510de905a",
      "description": "",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 167100,
      "tier": 141,
      "is_brand": 0
    },
    "_agentgirl_": {
      "id": "6674971683123119109",
      "uid": "MS4wLjABAAAAyLFfw1syD5Wv9QRGCAIwMnuD4Iw9nbvljWhRgYhzudJoOmfwc9XQEcjKTWKIWQIp",
      "username": "_agentgirl_",
      "social_type": 3,
      "title": "Wow, Ivleeva?!",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/6674971683123119109.jpg?w=150&till=1647496800&sign=23db5ede1df9f6745e5e773c11e4c2f6",
      "description": "𝖙𝖍𝖎𝖘 𝖎𝖘 𝖌𝖊𝖓𝖎𝖚𝖘",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 7200000,
      "tier": 147,
      "is_brand": false
    },
    "ba.bich_": {
      "id": "295788546777391104",
      "uid": "MS4wLjABAAAA8dpdT61JbzaFqoeuzPZqy2De2zYQufHLx1-NTviYaF0F4phmpxh7LCCb8ef1E5MC",
      "username": "ba.bich_",
      "social_type": 3,
      "title": "Бабич или БабиТч?🤨",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/295788546777391104.jpg?w=150&till=1647496800&sign=f8ebff6afac0e927ae9036de1a06dc19",
      "description": "go 15🍋?",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 12900000,
      "tier": 147,
      "is_brand": false
    },
    "mahavsekupleno": {
      "id": "6644047931509653509",
      "uid": "MS4wLjABAAAAQ4tMWQRZnaAbmGqTK0xdxPi9q1WTeQ4zCzVRy3yhMyASGcqkpRVow0I687fNtUjj",
      "username": "mahavsekupleno",
      "social_type": 3,
      "title": "Mahavsekruto🏄‍♀️🏄‍♀️🏄‍♀️",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/6644047931509653509.jpg?w=150&till=1647496800&sign=fda29713ffc492349359adb9debdfb96",
      "description": "Амбассадор @cheetos_rus\nСотрудничество [email protected]\nУчастник dream_team_house",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 9400000,
      "tier": 147,
      "is_brand": 0
    },
    "mimimizhka": {
      "id": "207005528730927104",
      "uid": "MS4wLjABAAAAymQu1hLr8eosa5gICkbrJ7oOcQ12rs6oOtwWP3BpIKlg-BZLYOSOqWa55z4Rwclg",
      "username": "mimimizhka",
      "social_type": 3,
      "title": "Молодой но не глупый",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/207005528730927104.jpg?w=150&till=1647496800&sign=689983ac503b20df38ccc306263aeed9",
      "description": "Соболезную если ты меня не смотришь",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 5300000,
      "tier": 147,
      "is_brand": 0
    },
    "anastasia_yseeva_17": {
      "id": "139056841736589312",
      "uid": "MS4wLjABAAAAEKxIwBlfrLwF5N02_NdH5Z6NKoOMW33gPeXShEyPIDVePf_LrEEvk7nQ8aHYr-FW",
      "username": "anastasia_yseeva_17",
      "social_type": 3,
      "title": "Anastasia",
      "avatar_url": "https://cdn.hypeauditor.com/img/tiktok/user/139056841736589312.jpg?w=150&till=1647496800&sign=319d10670ed3ed8344441daadd49733d",
      "description": "🍿Instagram-ANASTASIA_YSEEVA🍿\n\[email protected]",
      "is_public": true,
      "is_verified": true,
      "is_deleted": false,
      "followers_count": 7800000,
      "tier": 147,
      "is_brand": 0
    }
  },
  "posts": {
    "6901208693350616321": {
      "basic": {
        "id": "6901208693350616321",
        "text": "Lollipop balloon 🍭 @sonyatayurskaya",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": null,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6901208693350616321.jpg?till=1647496800&sign=1c569ea5eb097137f42dd83d563025c2",
        "thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/b26aa8780dcc4245929c926e3ab51bb3_1606812866?x-expires=1644793200&x-signature=ozsKsd2simLo26Lnzi%2FRgXendGs%3D",
        "create_time": "2020-12-01",
        "time_posted": "2020-12-01T08:54:24",
        "exact_create_time": 1606812864,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 2300000
        },
        "likes_count": {
          "value": 328000
        },
        "comments_count": {
          "value": 1470
        },
        "shares_count": {
          "value": 1943
        },
        "length_sec": {
          "value": 13
        },
        "virality": {
          "value": 0.08
        },
        "er": {
          "value": 14.409260869565218
        },
        "challenges_count": {
          "value": 0
        }
      }
    },
    "6974676519696207106": {
      "basic": {
        "id": "6974676519696207106",
        "text": "Golden ring @dream_team_house",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": 0,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6974676519696207106.jpg?till=1647496800&sign=01089b2095b8f04c11cd9a1ebf3e765b",
        "thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/61206c242f4743338ba0699f49554d52_1623918429?x-expires=1644793200&x-signature=Xa80PyYifYYdBOdKOeydsFKi6Is%3D",
        "create_time": "2021-06-17",
        "time_posted": "2021-06-17T08:27:06",
        "exact_create_time": 1623918426,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 593100
        },
        "likes_count": {
          "value": 50200
        },
        "comments_count": {
          "value": 270
        },
        "shares_count": {
          "value": 137
        },
        "length_sec": {
          "value": 15
        },
        "virality": {
          "value": 0.02
        },
        "er": {
          "value": 8.532625189681335
        },
        "challenges_count": {
          "value": 0
        }
      }
    },
    "6957247311470742786": {
      "basic": {
        "id": "6957247311470742786",
        "text": "Happy birthday, @sonyatayurskaya 🧁",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": 0,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6957247311470742786.jpg?till=1647496800&sign=aa3fa87d637131fb0523ce193f06db84",
        "thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/463718d389614f1bae3eaa7024e979ae_1619860375?x-expires=1644793200&x-signature=%2BfXsijTA4DyFDDQQiujkXUGn%2Bgs%3D",
        "create_time": "2021-05-01",
        "time_posted": "2021-05-01T09:12:52",
        "exact_create_time": 1619860372,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 841100
        },
        "likes_count": {
          "value": 85300
        },
        "comments_count": {
          "value": 384
        },
        "shares_count": {
          "value": 164
        },
        "length_sec": {
          "value": 13
        },
        "virality": {
          "value": 0.02
        },
        "er": {
          "value": 10.206634169539889
        },
        "challenges_count": {
          "value": 0
        }
      }
    },
    "6970026617703845122": {
      "basic": {
        "id": "6970026617703845122",
        "text": "Инь и Ян @danya_milokhin",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": 0,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6970026617703845122.jpg?till=1647496800&sign=1f679856b2f11ace75977a975196d7d2",
        "thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/50ce4b6657ec488e9ad3d031dfe1101f_1622835793?x-expires=1644793200&x-signature=vjnB0NITD9XFn1sOmJWHGLRhe4w%3D",
        "create_time": "2021-06-04",
        "time_posted": "2021-06-04T19:43:09",
        "exact_create_time": 1622835789,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 33900000
        },
        "likes_count": {
          "value": 3000000
        },
        "comments_count": {
          "value": 16400
        },
        "shares_count": {
          "value": 35100
        },
        "length_sec": {
          "value": 9
        },
        "virality": {
          "value": 0.1
        },
        "er": {
          "value": 9.001474926253687
        },
        "challenges_count": {
          "value": 0
        }
      }
    },
    "7002465956521970945": {
      "basic": {
        "id": "7002465956521970945",
        "text": "«Turn it Up» with @olivertree feat. @tommycashofficial coming September 2",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": 0,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7002465956521970945.jpg?till=1647496800&sign=80af6099da45615fdc7677ec0b4e9356",
        "thumbnail_gif": "https://p77-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/98ed1ba9591e4ed492114022bb0aab52_1630388659?x-expires=1644793200&x-signature=S%2BYWEIP8E3u0jfo7S5KLy%2BATP2E%3D",
        "create_time": "2021-08-31",
        "time_posted": "2021-08-31T05:44:17",
        "exact_create_time": 1630388657,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 915200
        },
        "likes_count": {
          "value": 97300
        },
        "comments_count": {
          "value": 813
        },
        "shares_count": {
          "value": 1955
        },
        "length_sec": {
          "value": 11
        },
        "virality": {
          "value": 0.21
        },
        "er": {
          "value": 10.934003496503497
        },
        "challenges_count": {
          "value": 0
        }
      }
    },
    "6865329824173542661": {
      "basic": {
        "id": "6865329824173542661",
        "text": "З.Б.С. @_agentgirl_ #tacosburritos",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": null,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6865329824173542661.jpg?till=1647496800&sign=54e9e3bbd8a9f271825016a89a8f2fc7",
        "thumbnail_gif": "https://p16-sign-va.tiktokcdn.com/obj/tos-maliva-p-0068/ccd23fd3c8a2414eb5960db7a24525dd_1598459168?x-expires=1644793200&x-signature=v2WfqgofNaSkTWWeeg7yk9yasmQ%3D",
        "create_time": "2020-08-26",
        "time_posted": "2020-08-26T16:26:07",
        "exact_create_time": 1598459167,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 7000000
        },
        "likes_count": {
          "value": 567600
        },
        "comments_count": {
          "value": 1662
        },
        "shares_count": {
          "value": 4728
        },
        "length_sec": {
          "value": 17
        },
        "virality": {
          "value": 0.07
        },
        "er": {
          "value": 8.199857142857143
        },
        "challenges_count": {
          "value": 0
        }
      }
    },
    "6803565809538059526": {
      "basic": {
        "id": "6803565809538059526",
        "text": "Support us on Eurovision! Join to #unovisionchallenge | @ba.bich_ @mahavsekupleno @mimimizhka @anastasia_yseeva_17 @danya_milokhin @dream_team_house",
        "challenges": [
          {
            "id": "1660946871605253",
            "name": "unovisionchallenge",
            "is_commercial": false
          }
        ],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": 0,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6803565809538059526.jpg?till=1647496800&sign=f8a5e0801d47c7f5da2551a9b142857a",
        "thumbnail_gif": "https://m-p16.akamaized.net/obj/tos-maliva-p-0068/268f9cdb144f49b0bab250881971ad83_1584078619",
        "create_time": "2020-03-13",
        "time_posted": "2020-03-13T05:50:10",
        "exact_create_time": 1584078610,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 8141779
        },
        "likes_count": {
          "value": 887248
        },
        "comments_count": {
          "value": 4720
        },
        "shares_count": {
          "value": 6051
        },
        "length_sec": {
          "value": 14
        },
        "virality": {
          "value": 0.07
        },
        "er": {
          "value": 11.029763888211654
        },
        "challenges_count": {
          "value": 1
        }
      }
    },
    "6917205394418912513": {
      "basic": {
        "id": "6917205394418912513",
        "text": "Outfit Of The Day w/ @sonyatayurskaya",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": null,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/6917205394418912513.jpg?till=1647496800&sign=467dd5cca72a26cb277f008735027b01",
        "thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/d5a2cb40fb0045c9a1fe696ed4749c25_1610537389?x-expires=1644793200&x-signature=xztob8vatwqrSLBfiNdZFF%2F1%2FNc%3D",
        "create_time": "2021-01-13",
        "time_posted": "2021-01-13T11:29:46",
        "exact_create_time": 1610537386,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 761700
        },
        "likes_count": {
          "value": 53100
        },
        "comments_count": {
          "value": 243
        },
        "shares_count": {
          "value": 144
        },
        "length_sec": {
          "value": 8
        },
        "virality": {
          "value": 0.02
        },
        "er": {
          "value": 7.022055927530523
        },
        "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",
        "challenges": [],
        "is_commercial": false,
        "is_potentially_commercial": false,
        "comment_setting": 0,
        "thumbnail": "https://cdn.hypeauditor.com/img/tiktok/post/7003373903942782210.jpg?till=1647496800&sign=9a9b4d947ab0c7cf5969e084a38870fd",
        "thumbnail_gif": "https://p16-sign-sg.tiktokcdn.com/obj/tos-alisg-p-0037/21650447c7cc4323a19ca3d8a98f38b2_1630600057?x-expires=1644793200&x-signature=cgSCZkXlyRUr1wA43ZMQSwQooLQ%3D",
        "create_time": "2021-09-02",
        "time_posted": "2021-09-02T16:27:34",
        "exact_create_time": 1630600054,
        "is_recommended": true
      },
      "metrics": {
        "views_count": {
          "value": 941200
        },
        "likes_count": {
          "value": 58800
        },
        "comments_count": {
          "value": 326
        },
        "shares_count": {
          "value": 213
        },
        "length_sec": {
          "value": 11
        },
        "virality": {
          "value": 0.02
        },
        "er": {
          "value": 6.304611134721632
        },
        "challenges_count": {
          "value": 0
        }
      }
    }
  }
}