> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keyapi.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Influencers

> Search TikTok influencers by keyword. Returns a list of matching creator profiles with follower counts, engagement rates, and basic metrics.

<div className="inline-flex items-center gap-2 px-4 py-2 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg">
  <span className="text-base">🪙</span>
  <span className="text-sm font-medium text-yellow-900 dark:text-yellow-100"><span className="font-semibold">1 credit</span><span className="text-yellow-700 dark:text-yellow-300 ml-1">per request</span></span>
</div>

## Copy for AI

<div className="my-6 rounded-xl border border-gray-200 bg-gray-50 p-5 dark:border-gray-800 dark:bg-gray-900/40">
  <div className="min-w-0">
    <p className="text-base font-semibold text-gray-900 dark:text-gray-100">🤖 Why Code When AI Can Do It For You?</p>
    <p className="mt-1 text-sm text-gray-700 dark:text-gray-300">Stop writing code like it's 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.</p>
  </div>

  <div className="mt-4">
    <button
      type="button"
      className="inline-flex items-center gap-2 rounded-md border border-emerald-300 bg-emerald-50 px-3 py-2 text-sm font-medium text-emerald-800 hover:bg-emerald-100 dark:border-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-100 dark:hover:bg-emerald-900/50"
      onClick={() => navigator.clipboard.writeText(`I want to make an API call to https://api.keyapi.ai/v1/tiktok/influencer/search.

Please help me write code to make this API call and handle the response appropriately. Include error handling and best practices.

Here are the details:

Endpoint: GET https://api.keyapi.ai/v1/tiktok/influencer/search

Description: Search TikTok influencers by keyword. Returns a list of matching creator profiles with follower counts, engagement rates, and basic metrics.

Required Headers:
--header 'Authorization: Bearer <YOUR_API_KEY>'

Parameters:
- keyword (Required): Search keyword. Example: baby
- region (Required): Country/region code (e.g. US, GB, DE). Example: US
- offset (Optional). Example: 0

Example Response:
{
"message": "success",
"code": 0,
"data": {
"challenge_list": null,
"cursor": 10,
"extra": {
  "api_debug_info": null,
  "fatal_item_ids": [],
  "logid": "20251112031432E3D82E91141CC3019255",
  "now": 1762917273000,
  "search_request_id": "",
  "server_stream_time": 964
},
"feedback_type": "user",
"global_doodle_config": {
  "ab_params": {
    "user_relation_ship": "1"
  },
  "display_filter_bar": 1,
  "feedback_survey": [
    {
      "feedback_type": "user",
      "long_stress_info": null,
      "multiple_choices": [
        {
          "key": "Dislike",
          "value": "Dislike"
        },
        {
          "key": "Profile not found",
          "value": "Profile not found"
        },
        {
          "key": "Unmatched posts",
          "value": "Unmatched posts"
        },
        {
          "key": "Inappropriate content",
          "value": "Inappropriate content"
        },
        {
          "key": "Others",
          "value": "Others"
        }
      ],
      "send_us_multiple_choices": null
    }
  ],
  "hide_results": false,
  "hit_dolphin": false,
  "hit_shark": false,
  "keyword": "baby",
  "new_source": "switch_tab",
  "search_channel": "musically_user",
  "tns_search_result": "Pass"
},
"has_more": 1,
"input_keyword": "baby",
"log_p
... (truncated)`)}
    >
      <span>✨</span>
      <span>Copy for AI</span>
    </button>
  </div>
</div>


## OpenAPI

````yaml en/tiktok.openapi.json GET /v1/tiktok/influencer/search
openapi: 3.0.1
info:
  title: Tiktok API english documentation
  description: >-
    The english reference documentation of the Tiktok API includes the
    interface's purpose, parameter description, response status, and sample
    structure.
  version: 1.0.0
servers:
  - url: https://api.keyapi.ai
    description: Production
security: []
tags:
  - name: TikTok Influencer
  - name: TikTok Shop
  - name: TikTok Content
  - name: TikTok Intelligence
paths:
  /v1/tiktok/influencer/search:
    get:
      tags:
        - TikTok Influencer
      summary: Search Influencers
      description: >-
        Search TikTok influencers by keyword. Returns a list of matching creator
        profiles with follower counts, engagement rates, and basic metrics.
      operationId: get_api_v3_realtime_influencer_search
      parameters:
        - name: keyword
          in: query
          required: true
          schema:
            type: string
            example: baby
            default: baby
          example: baby
          description: Search keyword
        - name: region
          in: query
          required: true
          schema:
            type: string
            example: US
            default: US
          example: US
          description: Country/region code (e.g. US, GB, DE)
        - name: offset
          in: query
          required: false
          schema:
            type: string
            example: '0'
            default: '0'
          example: '0'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties: {}
                example:
                  message: success
                  code: 0
                  data:
                    challenge_list: null
                    cursor: 10
                    extra:
                      api_debug_info: null
                      fatal_item_ids: []
                      logid: 20251112031432E3D82E91141CC3019255
                      now: 1762917273000
                      search_request_id: ''
                      server_stream_time: 964
                    feedback_type: user
                    global_doodle_config:
                      ab_params:
                        user_relation_ship: '1'
                      display_filter_bar: 1
                      feedback_survey:
                        - feedback_type: user
                          long_stress_info: null
                          multiple_choices:
                            - key: Dislike
                              value: Dislike
                            - key: Profile not found
                              value: Profile not found
                            - key: Unmatched posts
                              value: Unmatched posts
                            - key: Inappropriate content
                              value: Inappropriate content
                            - key: Others
                              value: Others
                          send_us_multiple_choices: null
                      hide_results: false
                      hit_dolphin: false
                      hit_shark: false
                      keyword: baby
                      new_source: switch_tab
                      search_channel: musically_user
                      tns_search_result: Pass
                    has_more: 1
                    input_keyword: baby
                    log_pb:
                      impr_id: 20251112031432E3D82E91141CC3019255
                    music_list: null
                    qc: ''
                    rid: 20251112031432E3D82E91141CC3019255
                    status_code: 0
                    type: 1
                    user_list:
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=534028a3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=%2FMPkw0Uh3j8izUVXkxqtWyzRD3I%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=f34ef3a1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=PA8cY7uREax%2FuO5QXqr9Ymvntow%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=29992393&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=oQRBKgqfuogoPCh%2BqQ%2FaTQ3X%2BSk%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=92a8063e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=%2BII1JuTlKGs%2FBYYkVaWws1DKcIo%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=4fda23b1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=dShYK0y8GQnXifFVt3gMRTqMHSg%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=ce83c40b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=wBrEGk4SVv9JwCIuWt15K2dPaXU%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=9a8f1173&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=gH3N911zFxfgOtlVEgNWg%2BFMR%2F0%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=dd84e42e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=B3Kp68yh2FzSdVcFRLqMHwg%2BVfs%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=95d9d3b1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=qrk8qe24E3F3XOdJ2hPpkqZ4df4%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=9e1880f7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=1NP2LcxRuDZJOu1tlf0iyiqB1Q8%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=71aac387&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=LypSe4psjjGbh6oBOjIwy6IWxUE%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c55e0655&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=dhu3OOna1JHokwy4yHtwiDyEBhY%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=40bf3e6a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=rVVMjpS3yv5bL%2Bo4DnD63qZ8Zl8%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=d74373c3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=UF%2Fg8%2FC7yH%2BlDC85vo8da9c%2BKqU%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=466c291f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=mFA0%2BstdQlMslP7V7XtvCyeLk4c%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: >-
                            tos-useast2a-avt-0068-euttp/6f0fbb79c19d1ca0daff6557b93b52eb
                          aweme_count: 93
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: ''
                          cv_level: ''
                          download_prompt_ts: 0
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 866653
                          follower_status: 0
                          followers_detail: null
                          following_count: 38
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: ''
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: baby
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: baby
                          search_user_name: love1baby12
                          sec_uid: >-
                            MS4wLjABAAAAvxl0BrcPskrCvuvJ5l9z1F3odQJe1OXSNbr4jZ_DsL8DMPSyaSnNEfT1Cz5rd-Et
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 27197014
                          type_label: null
                          uid: '7309550143232377888'
                          unique_id: love1baby12
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=358630d2&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=aVeqWYtZT73crS4tkiVaZuVM6Hc%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=d63dbbbe&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=B2JcSTIvSOALTwj1HdQhCxAnpf0%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=63c92eac&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=pxSsHJ2vx8GawIE2rBv%2BNDtx9YY%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=bf580a06&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=OVkr9UGySSDFMMqSLDlv0CmhHzk%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=3a3abbbb&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=LsyAjv31bHUY7eI1CLPTCARuiKg%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=5dc27b41&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=uXwKe%2F2e2hM6lDcStMmrfY0nmNw%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=951fcbe9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=D885OTDEeJidJuOiHsgLtTn5QoA%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=765f58cf&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=DO86AUpXa%2F9IJggrtH7%2BBfw7tLQ%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=327bf409&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=mKusXhFDHxNlGjOaBXTaGZw0XwM%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=f4707475&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=CjFij%2FySS9lwPhOUhA99aLTPCrY%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=b2081506&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=WB5JPu7xCs1WBQK7sPjw2C3fe10%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=a31dae09&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=FOFbbYkh9MpLiLXIVOYpEGOEiio%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=10ed9e0b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=jVKqxh%2BUG5VE1KwyEQMRpSswykk%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=ae3c0cba&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=%2FwtSNYtw6non38%2FTai20uxkk9NI%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=0c127a3a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=6ND0KPtdfpzw2tYhKIr%2BsiJs7xQ%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-alisg-avt-0068/9c4cb07482d8eab1b76dd24c3e7aec61
                          aweme_count: 157
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: ''
                          cv_level: ''
                          download_prompt_ts: 0
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 2313622
                          follower_status: 0
                          followers_detail: null
                          following_count: 0
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: ''
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: Baby Quin
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: Baby Quin
                          search_user_name: babyquinvn
                          sec_uid: >-
                            MS4wLjABAAAAk1rFIn4FdicTZV63npfJga3FjuT69bCjoQH230jEaHQnCh-86ebkLEmxzDN5hoVl
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 20393403
                          type_label: null
                          uid: '7387629179652719624'
                          unique_id: babyquinvn
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/73787de57ab40665f77a726583997548
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=2f0a822f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=c4qZTRj%2FZ8WzyJPz%2FOIHFsKm9Wg%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=bcf30e23&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=lBoRTheAcgZcmX2vxV5aC5BuXGU%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=ba9a9e15&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=0NGNDIxdG8lpU%2Bewqgzd8Frkw78%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/73787de57ab40665f77a726583997548
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=32d11a33&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=vheJ8TVR2Q43JMAn6P6y7zKu4Ng%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=4f8e1752&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=QenGawQhaBbNtiNfxMvTnwae4u8%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=1e8d06e0&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=FyW46k5Q3UWlRhlfqwMSP%2FseFSw%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/73787de57ab40665f77a726583997548
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=b9428627&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=uFnE5wMfYOnpaHVJZ%2F49eROzZIY%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=d783ee21&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=J0dNOmsdJaFML6p8zz%2BpO76a26g%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=c0673b31&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=hcMqaIbQzZODWNMbBn6qwbAUwSw%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/73787de57ab40665f77a726583997548
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=3cc9dd53&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=NnrAuCphOfgpBtUgIPjWBYoi6ew%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=8619f2ad&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=P81wwmikJkxpDupbKty%2Bjs3znQ8%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=82baee2c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=7LW%2FhjatT%2BQnI3GQC%2FJuFwNO9Xs%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/73787de57ab40665f77a726583997548
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=4ab5d6cc&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=L%2FnTUqZ6Mqe0sL0JAgmXVs31kDo%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=25dab515&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=cvl0sGo%2BSD00oCzRTyf1hYK2GNs%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/73787de57ab40665f77a726583997548~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=bb07efbf&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Tw8pVvRlO78krqM%2FnFz%2FBqwXmw8%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-alisg-avt-0068/73787de57ab40665f77a726583997548
                          aweme_count: 2346
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: ''
                          cv_level: '2'
                          download_prompt_ts: 1641723581
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 3536071
                          follower_status: 0
                          followers_detail: null
                          following_count: 65
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: baby_chikkk
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: Baby Чика
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: Baby Чика
                          search_user_name: baby_chik
                          sec_uid: >-
                            MS4wLjABAAAAPnhAFrkvUN5ihwq6F7EnT4PjpniJA_ObWcLPwyJHSw4QDFSv--VBAOPE1ob_u4vf
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 122505447
                          type_label: null
                          uid: '6921361796659135489'
                          unique_id: baby_chik
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=776fd86c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=RSf%2FaTBSJHSmoz19oZ%2Br%2FgSGcVw%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=40cbcac1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=6W3eN6Ft4izLuPZv7RcsEiCrVFc%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=834cff68&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=6eg2cdvIZokYK5Ecm4%2B1IECG13I%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=b3bf2c53&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=RAJ7BQwi7A1qXggBGLLXgZdfE9c%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=e55f2628&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=i9G096kAYOEa3w2AGHyHXj7gIdE%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=0a968404&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=wBtkCVhp8TTkNnR1DVEioapg2Hg%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=c34df5f5&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=SzzDfFoB98igJBC%2BDYcMkOHxKXY%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=5fdbae4f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=N9jFa3eBDYcQUD8vuCsvdc1Zz4o%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=9ef65b06&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Wd6TTTdt1eq%2B%2FAoSAS4v0GfJoN4%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=a24aa293&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=AAP4OBx04A%2BTIH1FTqa6xcc04nY%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=a29b7cc4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=81ly8jCYlngiYSI%2BsHU4i2Q1otE%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=3c140cd7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=IAjwRfW7uaxsqN2lBhUifkG%2FKRE%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=b3555591&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=9aB4FW6qmNAVQKiL2yuBnIiXjS4%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=aa413431&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=W2QI%2F1slKKApk5IYrSqPlrRGj68%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=997e0da7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=CKP3PnnEY%2BDm12x4aZa%2BL1wIDmg%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-alisg-avt-0068/57ae7a448f98a3f0b8093a204f008a42
                          aweme_count: 1841
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: Popular creator
                          cv_level: '3'
                          download_prompt_ts: 1613331285
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 2995732
                          follower_status: 0
                          followers_detail: null
                          following_count: 26
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: ''
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: 🧸💌
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: 🧸💌
                          search_user_name: llaibybaby
                          sec_uid: >-
                            MS4wLjABAAAAkG5WKbIxH7dP5d396v2C_lXWDDVQDW65q0V9vn2CzmlDVD6Vr3LtmKVavkyvtEV-
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 88153461
                          type_label: null
                          uid: '187371459403567105'
                          unique_id: llaibybaby
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=baf62b36&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=XEg2T2IHITRdoZXtPFyBGyft55A%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=85458134&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=TwQnL37QItFZkQJnWZP8BiXxs00%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=0d22ecb8&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=PEX8X89RcU%2BRBrFbcI20rCtSWXo%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=d6c6669b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=1tzwZnuFX1%2FIgfzQ0qMQ%2Be7VPwg%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=e0d52066&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=pzbmOaC8oVCH0VbKUy2oen02cHk%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=025ab153&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=yuomni%2FM%2FPOsRoaxEpScJWXlrYA%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=488167f1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=nRxqUVELfktzjzAZiBaXNCoP33U%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=17f8999c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=lbXaqASX5YEw%2B0l%2BZ2BfsXGAAXc%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=d84eb454&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Zyd1pnhhB2eKPPCyepcB3wW0Hmg%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=b8fcda81&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=ylUnNP5sDKzd2CWnaRoRuBcrRfo%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=59daec3d&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=5CNX%2BRxknSnH1d4UGdWiVWfRCH0%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=b5ffa289&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=da3U3dP%2BKc9JEIDUm6w8blRASJE%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=a9763346&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=rrjVQUAwz%2FNG25NWFt3Z6yu4z%2Bc%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=df28c91d&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=rFM%2F4e1Jm6%2FVY7jDKzEw2aaML5o%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=86d7bd9c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=DBPXRBzG9Yvan6Tnpb0R2xqb29Q%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: >-
                            tos-useast2a-avt-0068-euttp/5f594deaa843d63233bbb7605e453d99
                          aweme_count: 640
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: ''
                          cv_level: ''
                          download_prompt_ts: 0
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 743249
                          follower_status: 0
                          followers_detail: null
                          following_count: 26
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: abdoaliofficial
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: Baby Videos
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: Baby Videos
                          search_user_name: babyscollections
                          sec_uid: >-
                            MS4wLjABAAAAyOHSM35EGuubVNfTPdCx5_qAm15fOsPt5QApqDHTDtEwoOL8A_KV50d7K7yOFTio
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 8467211
                          type_label: null
                          uid: '7199383731420169221'
                          unique_id: babyscollections
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=3bdf0398&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=sAY9V5DSj99%2F54xwxikV%2BZ%2FFRV8%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=44cd464b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=xh66jFBwM0W%2BL%2FnvBzL58KXu9Nk%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=39e42b10&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=xxUs9MIPRDAZidvyWIEoz3eV9AM%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=b3396ef3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=B9CJ9knsyqlaH4uZC5UPyu%2BvOL4%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=7d4be42f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=YEbKmd51bcbah3scrygTAco1kiY%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=b25bc2fe&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=IAWLDSRdCJ3cjy4q3fZq0ZClBpk%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=d42ed5a7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=DDkTisdFODA4C0InrgKplHq8wjw%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=97875011&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=snTWWAHXWKLJON%2F8ZSx%2Bb38FtjU%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=25a9aece&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=0IizUXHkLTH4HKmVbJAIQqljdtg%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=71331b03&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=7bZtT9wyiv0LI6zNX5PcLizIYk4%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=058607c4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=XRyt%2BDvlSQsmbM5FThRucp%2FSsUA%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=8a3c2fa3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=I3vvykIgRVyDh%2B25XA7zMaSsS%2FU%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=11fbdc72&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=aLmNQ91ob8eTaeuXTkMuVinnrxo%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=127115da&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=5G63WxLr2DxjvTPHQwwSq0Tn5Tk%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=602312fb&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=nxd1KA%2BlrR%2BqWa44zzALWIvJZo8%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-alisg-avt-0068/cc2f9d39d18ded92083bd358dbcc28b8
                          aweme_count: 1032
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: Singer, Big Stage Contestant
                          cv_level: '2'
                          download_prompt_ts: 0
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 5149353
                          follower_status: 0
                          followers_detail: null
                          following_count: 237
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: babyshimaofficial
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 5
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: Neng BabyShima
                          original_musician:
                            digg_count: 0
                            music_count: 116
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: Neng BabyShima
                          search_user_name: babyshimaofficial
                          sec_uid: >-
                            MS4wLjABAAAA3kjnWg5v4tl_vh-y7o00mQhizihvCgMnkL_ga2Mm3pE8BpG4DW2paM1-Wfp7hyQ1
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 55822362
                          type_label: null
                          uid: '6531725325084639234'
                          unique_id: babyshimaofficial
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=65e20ec3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Q2bwp0NRO8EPRXSTu%2F3YIHEpKWQ%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=dd20c0c1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=2ucC8MEh4esqUI%2FgJPixlyYy43c%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=a80cc7bf&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=HCH97ilQnV%2FgC8vy4M8BTM3sWqI%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=cce25515&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=2putB%2Bcgi0o9CYDIWNnuoi7o9Zw%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=4c64f60f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=QZVeQwd0LbfJb%2BQ02vG%2BjWTkyvA%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=04a83376&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=DNE2LesrF6m7JgjAAHvLQ%2Fi7vhw%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=ed815c53&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=15IehX9u5UFd9lp1Bqqi96y7k2U%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=5862c0b9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=9a5FjlxqomUaCz%2FM4uGKZkJ8c68%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=e9f29dc1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=ukd6tFdU4tTPUTixa3daulQM3uU%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=512276b6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=pHVsaUW9xyEd14TBaC7DU8yNb48%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=3bf19515&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=ZcQlgsgr6qOZfFuHdP84rrs1lqA%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=eb0b687a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=E9B1wlJrWvx3ZowUySB5GyBZm5o%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=c72dd679&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=S8gBfT4sjK2xokl91V1%2FIsiyahs%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=eda93a84&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=LRIDC7CGqgY%2FkxEn46M2FmTBKe8%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=aabfea91&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=8Do32Em8fo8B48Qk2KsyDKjJiqY%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-maliva-avt-0068/47433cd24fbadc7834ff2c1eea825039
                          aweme_count: 54
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: ''
                          cv_level: ''
                          download_prompt_ts: 1662511340
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 2531318
                          follower_status: 0
                          followers_detail: null
                          following_count: 0
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: baby.carter
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: Baby_carterr 🍭
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: Baby_carterr 🍭
                          search_user_name: baby.carterrr
                          sec_uid: >-
                            MS4wLjABAAAA7cEZlzLiPFkS6mNFU3CK43LJ7chhy8oosVQFW3ojUGYpem0fvv3YQk8oN_T3cd6Q
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 34418331
                          type_label: null
                          uid: '7034673676881003525'
                          unique_id: baby.carterrr
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=bd7cf30f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=LNHHN4x3WZWXQJoXBY%2FXiJ0KdNE%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=b8cc0f30&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=DS%2BFI5ZggmedFlx5DEtbc6h%2Bj0w%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=96fccda1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Ort1Bp9jxz2yexaW%2FG5o51wQVZw%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=65d8c5c1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=%2BmuFWQ%2FPWbeVGQcIurWfc8VeKdw%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=b8544549&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=1npke4i9krDERVZKRGLwabpTNZk%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=ad1edfd3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=y%2Bac1%2FwiSr7q56PXyQJfQ%2FupIoI%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=9d8ca10e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=vryJ0AZZqnX8lW1mzIn05O1fVFw%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=0664ff70&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=dDXsG%2FAZb9LsR1bAEiZVSo1G7ow%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=f4e0e315&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=sRpzB4PsL9J4%2BMRu8SuprZrviLc%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=8c27cc7f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=k7boRsWjQwpvJRVuDwKDz3BLuaA%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=86d8b2ad&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=2hZW%2Bjj0XvCqcIkqTgMHQJtExIE%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=94cd6ccf&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=dPO4FvSruuyaLmFM3KE2qAX6wQI%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=f3ede7e1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=ozB%2BMa2RkZ2n9Cql%2BGuohDFX4go%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=ca5a61fd&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=O7egccz4%2BBaR9IzI4%2FOPR0k1O3g%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=61005ae7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=6kdIQWCgeBRMumDli9Chjd%2F%2FR8U%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-alisg-avt-0068/1cf2d09d98731ffe071c0d953cd553bb
                          aweme_count: 2402
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: Popular creator
                          cv_level: '3'
                          download_prompt_ts: 1669259396
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 2353261
                          follower_status: 0
                          followers_detail: null
                          following_count: 3
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: ''
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: 👶🏾BABYDAIZ 🍼
                          original_musician:
                            digg_count: 0
                            music_count: 186
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: 👶🏾BABYDAIZ 🍼
                          search_user_name: babydaiz
                          sec_uid: >-
                            MS4wLjABAAAABjNPSxEDcdmKXHHcctvPj1FGQpe7IzrC62fJSkBpi14BJqVgQvsXyAzEp3cBJw1K
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 94602996
                          type_label: null
                          uid: '6722503147812078598'
                          unique_id: babydaiz
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 17
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/39d616595304d96456df97d787667e70
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=8a356f53&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Z61cJyPY7OVSRy0NvW8TFnbxwmE%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=4c93245b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=rwNG%2F28zCPMym%2FUJMH9rW0ZSqEA%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=c32ef933&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=tTDlJ1%2FxnYFKy%2BDIcQbsv3vETN4%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/39d616595304d96456df97d787667e70
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=fb120aa8&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=PDT%2Fw4bw2nzdePablfmRtzyZys8%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=6362aaf7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=3zehlWsXCgiQtXUoVvxMzwixS%2FQ%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=eb506b05&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Kf6lRbuCtxrpjLyJ13qgRJRlSLc%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/39d616595304d96456df97d787667e70
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=8b07a4d6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=4%2Bt%2FdUfNIXw3mYu58Er3RA6bPyY%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=1c568389&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=ewcFsZ5eoP6I8h%2F26kCOt8FgKAA%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=9fad45ee&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=wEVCnyUXUszWCcSRuuXzp6Hi0Rw%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/39d616595304d96456df97d787667e70
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=e3d33f82&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=l0lwQsCCN1Nxe8K6OlmjY%2BrBfzw%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=1ac32533&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=%2F5xl2xUOT1i7WQeI0QKq9guOr1M%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=f7ca7975&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=hbo%2Bx8WqPqyqlUZD4Iq6bFHgYkk%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-alisg-avt-0068/39d616595304d96456df97d787667e70
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=15b4ae9a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=O2eF4LKvlZByhhlFZYnRB6Kba04%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=8bb242bd&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=oxqAc2zqLbdQPmTqAhfhdENqbXI%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/39d616595304d96456df97d787667e70~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=2568303d&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=dsbkpUE3JJ9hwAQDdosscuUkUXM%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-alisg-avt-0068/39d616595304d96456df97d787667e70
                          aweme_count: 39
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: ''
                          cv_level: ''
                          download_prompt_ts: 0
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 362711
                          follower_status: 0
                          followers_detail: null
                          following_count: 0
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: ''
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: BaBy Baby 🐰
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: BaBy Baby 🐰
                          search_user_name: babybabystore24
                          sec_uid: >-
                            MS4wLjABAAAAzHCH_FAkaznjdmvrcyuRHDixzga-aNclcZ6-7rJPYAyXTN3MzxMmgHwp6L_9EYqb
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 10426632
                          type_label: null
                          uid: '7265634609114547201'
                          unique_id: babybabystore24
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                      - challenges: null
                        effects: null
                        items: null
                        mix_list: null
                        musics: null
                        position: null
                        uniqid_position: null
                        user_info:
                          accept_private_policy: false
                          account_labels: null
                          ad_cover_url: null
                          advance_feature_item_order: null
                          advanced_feature_info: null
                          authority_status: 0
                          avatar_168x168:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=a4ec08ce&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=3rDxibWAyA9CZBm29qUblhKF3BA%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:168:168:q70.webp?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=0a5cae05&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=%2F3abCY7ise%2F%2F2cYERcW1Izlwip4%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=8833&idc=useast8&ps=87d6e48a&refresh_token=e4ce6589&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=UU7kKRS9TUfOh0sa%2FUMxRQtjU%2FE%3D
                            url_prefix: null
                            width: 720
                          avatar_300x300:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=9a3a7174&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Gd%2FkjlZvdmJDQrtCPY%2Fl6YM2rS4%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:300:300:q70.webp?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=09f29521&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=XD7l8umpf5pfVTsH8KoMJ75uRFQ%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:300:300:q70.jpeg?dr=8834&idc=useast8&ps=87d6e48a&refresh_token=d5a4b54e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=pX6KYU51RiHbl688m%2FtD42%2B%2BCf0%3D
                            url_prefix: null
                            width: 720
                          avatar_larger:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=deddce42&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=zDCHPMKCfrWB1i1vrJ3wWzaZLlc%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:1080:1080:q70.webp?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=d07d1b53&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=xVUPqmdIoQRPIqldYFlgrVdTUNw%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=8837&idc=useast8&ps=87d6e48a&refresh_token=573f9c2e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=Q4pxKWS6eaeaadvIvSjudZ%2BWlpo%3D
                            url_prefix: null
                            width: 720
                          avatar_medium:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=7629379b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=hA3ypKTj9gBAOhTX7Y7vfjNBtDg%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:720:720:q70.webp?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=94cae8fe&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=kt4EDJljZXTHk2azTAm5MuDfuxg%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=79cedd05&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=uHpQNPpCyGgAkkzT7S0Vpq8i%2F3I%3D
                            url_prefix: null
                            width: 720
                          avatar_thumb:
                            height: 720
                            uri: >-
                              tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=6d8ae5df&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=RuKHkfcWE378dhgeZb%2BBqfRK%2Fyw%3D
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:100:100:q70.webp?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=7727d0f9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=537UBlW6BrWLAFePCjqJkpDyj%2BM%3D
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?biz_tag=musically_user.user_cover&dr=8835&idc=useast8&ps=87d6e48a&refresh_token=84405783&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1763002800&x-signature=dxtZp9BxfjA1ewGLXE4uGJ7ylhc%3D
                            url_prefix: null
                            width: 720
                          avatar_uri: tos-maliva-avt-0068/e5a751a7a5ebd2e8eff48b1e0d7f5590
                          aweme_count: 159
                          block_status: 0
                          bold_fields: null
                          can_message_follow_status_list: null
                          can_set_geofencing: null
                          cha_list: null
                          comment_filter_status: 0
                          comment_setting: 0
                          commerce_user_level: 0
                          cover_url: null
                          custom_verify: ''
                          cv_level: ''
                          download_prompt_ts: 0
                          enable_direct_message: false
                          enabled_filter_all_comments: false
                          enterprise_verify_reason: ''
                          events: null
                          fake_data_info: {}
                          fb_expire_time: 0
                          follow_status: 0
                          follower_count: 11352
                          follower_status: 0
                          followers_detail: null
                          following_count: 4
                          friends_status: 0
                          geofencing: null
                          hide_search: false
                          homepage_bottom_toast: null
                          ins_id: ''
                          is_ad_fake: false
                          is_block: false
                          is_discipline_member: false
                          is_mute: 0
                          is_mute_lives: 0
                          is_mute_non_story_post: 0
                          is_mute_story: 0
                          is_private_account: 0
                          is_star: false
                          item_list: null
                          live_agreement: 0
                          live_commerce: false
                          live_verify: 0
                          mention_status: 1
                          mutual_relation_avatars: null
                          name_field: unique_id
                          need_points: null
                          need_recommend: 0
                          nickname: Baby
                          original_musician:
                            digg_count: 0
                            music_count: 0
                            music_used_count: 0
                            new_release_clip_ids: null
                          platform_sync_info: null
                          prevent_download: false
                          relative_users: null
                          reply_with_video_flag: 4
                          room_id: 0
                          room_id_str: '0'
                          search_highlight: null
                          search_user_desc: Baby
                          search_user_name: .baby.207
                          sec_uid: >-
                            MS4wLjABAAAARfeQZLXSGt_BSrFXIMhmxnOiMBeE7dYZf3RS7OQ-Dun4VCt8fR3Nekqs9rN16hnA
                          secret: 0
                          shield_comment_notice: 0
                          shield_digg_notice: 0
                          shield_edit_field_info: null
                          shield_follow_notice: 0
                          short_id: '0'
                          show_image_bubble: false
                          special_account:
                            special_account_list: null
                          special_lock: 1
                          status: 1
                          stitch_setting: 0
                          total_favorited: 62428
                          type_label: null
                          uid: '7541855915537007638'
                          unique_id: .baby.207
                          user_canceled: false
                          user_mode: 1
                          user_period: 0
                          user_profile_guide: null
                          user_rate: 1
                          user_spark_info: {}
                          user_tags: null
                          verification_type: 0
                          verify_info: ''
                          video_icon:
                            height: 720
                            uri: ''
                            url_list: []
                            url_prefix: null
                            width: 720
                          white_cover_url: null
                          with_commerce_entry: false
                  requestId: 08474989-03cf-4ea9-9bfc-c63106cf08de
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 400
                  data: null
                  message: 'Missing required parameter: handle'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 401
                  data: null
                  message: apiKey is null
        '402':
          description: Payment Required
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 402
                  data: null
                  message: apiKey quota is not enough
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 429
                  data: null
                  message: qps limit exceeded
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 500
                  data: null
                  message: Internal server error
      deprecated: false
      security:
        - JWT Bearer: []
      x-codeSamples:
        - lang: curl
          label: cURL
          source: |-
            curl --request GET \
              --url 'https://api.keyapi.ai/v1/tiktok/influencer/search?keyword=baby&region=US&offset=0' \
              --header 'Authorization: Bearer <YOUR_API_KEY>'
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                'https://api.keyapi.ai/v1/tiktok/influencer/search',
                params={"keyword": "baby", "region": "US", "offset": "0"},
                headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
            )
            print(response.json())
        - lang: javascript
          label: JavaScript
          source: >-
            const params = new URLSearchParams({"keyword": "baby", "region":
            "US", "offset": "0"});


            const response = await
            fetch(`https://api.keyapi.ai/v1/tiktok/influencer/search?${params}`,
            {
              method: 'GET',
              headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
            });

            const data = await response.json();

            console.log(data);
components:
  securitySchemes:
    JWT Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        API key for authentication. Format: `sk_live_xxxxxxxxxxxxx`
        Get your API key from the [Dashboard](http://keyapi.ai/app/dashboard).

````