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

# Profile Videos

> Scrapes videos from a TikTok profile. Pass cursor to get more videos.

<Note>
  💳 **1 credit** per request
</Note>


## OpenAPI

````yaml GET /v1/scrape/tiktok/videos
openapi: 3.1.0
info:
  title: SociaVault API
  version: 1.0.0
  description: >-
    # SociaVault API Documentation


    The SociaVault API provides comprehensive access to social media data
    extraction across multiple platforms.


    ## Features


    - **Multi-Platform Support**: TikTok, Instagram, YouTube, Facebook, Twitter,
    Reddit, Threads, and more

    - **Credit-Based System**: Pay-as-you-go pricing with transparent credit
    costs

    - **High Performance**: Fast, reliable data extraction

    - **Comprehensive Data**: Detailed user profiles, videos, posts, comments,
    and analytics


    ## Authentication


    All API requests require authentication using an API key in the `X-API-Key`
    header:


    ```bash

    X-API-Key: sk_live_your_api_key_here

    ```


    Get your API key from the [SociaVault
    Dashboard](https://sociavault.com/dashboard).


    ## Credits


    Each endpoint consumes credits based on data complexity:

    - Simple requests (profiles): 1 credit

    - Complex requests (demographics): 20+ credits

    - Paginated requests: Credits per page


    Check your credit balance in the dashboard or via the API.


    ## Support


    - **Documentation**: https://docs.sociavault.com

    - **Email**: support@sociavault.com

    - **Discord**: https://discord.gg/sociavault
  contact:
    name: SociaVault Support
    email: support@sociavault.com
    url: https://sociavault.com/support
  license:
    name: Commercial
    url: https://sociavault.com/terms
servers:
  - url: https://api.sociavault.com
    description: Production API
security:
  - ApiKeyAuth: []
tags:
  - name: account
    description: Account management and credit balance
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/account
  - name: tiktok
    description: Scrape TikTok profiles, videos, and more
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/tiktok
  - name: tiktok-shop
    description: Everything about TikTok Shop
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/tiktok-shop
  - name: instagram
    description: Gets Instagram profiles, posts, and reels
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/instagram
  - name: youtube
    description: Scrape YouTube channels, videos, and more
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/youtube
  - name: linkedin
    description: Scrape LinkedIn
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/linkedin
  - name: facebook
    description: Get public Facebook profiles and posts
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/facebook
  - name: facebookAdLibrary
    description: Scrapes the Facebook (Meta) Ad Library
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/facebookAdLibrary
  - name: facebookMarketplace
    description: Search Facebook Marketplace and pull full listing details
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/facebookMarketplace
  - name: googleAdLibrary
    description: >-
      Scrape the Google Ad Transparency Library. *This only gets the public ads.
      Some ads you need to log in for and sadly we can't get those. Also, since
      there are so many variations, the return types might not all be 100% the
      same.
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/googleAdLibrary
  - name: linkedinAdLibrary
    description: Search the LinkedIn Ad Library
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/linkedinAdLibrary
  - name: twitter
    description: Get Twitter profiles, tweets, followers and more
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/twitter
  - name: reddit
    description: Scrape Reddit posts and comments
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/reddit
  - name: threads
    description: Get Threads posts
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/threads
  - name: google
    description: Scrape Google search results
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/google
paths:
  /v1/scrape/tiktok/videos:
    get:
      tags:
        - tiktok
      summary: Profile Videos
      description: Scrapes videos from a TikTok profile. Pass cursor to get more videos.
      operationId: tiktok_Profile_Videos
      parameters:
        - name: handle
          in: query
          description: TikTok handle
          required: true
          schema:
            type: string
            example: stoolpresidente
        - name: user_id
          in: query
          description: TikTok user id. Use this for faster responses.
          required: false
          schema:
            type: string
            example: '6659752019493208069'
        - name: sort_by
          in: query
          description: What to sort by (latest or popular)
          required: false
          schema:
            type: string
            enum:
              - latest
              - popular
            example: latest
        - name: max_cursor
          in: query
          description: Cursor to get more videos. Get 'max_cursor' from previous response.
          required: false
          schema:
            type: string
            example: '1734562353000'
        - name: trim
          in: query
          description: Set to true for a trimmed down version of the response
          required: false
          schema:
            type: boolean
            example: false
      responses:
        '200':
          description: >-
            Successful response


            **Key Response Fields:**

            - `aweme_list[0].image_post_info.images`: Slideshow images (you'll
            want all of the 'thumbnail' images

            - `aweme_list[0].video.dynamic_cover.url_list`: Thumbnail

            - `aweme_list[0].statistics`: All the counts for views, likes,
            comments, etc. will be in this key

            - `aweme_list[0].statistics.play_count`: Views

            - `aweme_list[0].statistics.digg_count`: Likes

            - `aweme_list[0].aweme_id`: Id of the tiktok. No idea why they call
            it this, but aweme is a name you'll find everywhere in tiktok
            responses. 

            - `aweme_list[0].video.play_addr.url_list`: Video without watermark

            - `aweme_list[0].is_ad`: Whether the tiktok is an ad. Make sure
            you're looking at the is_ad field and not the is_ads field

            - `aweme_list[0].is_top`: is_top: 1 means the tiktok is pinned

            - `aweme_list[0].is_eligible_for_commission`: If video is promoting
            an item from tiktok shop
          content:
            application/json:
              example:
                success: true
                data:
                  success: true
                  max_cursor: 1768705736283
                  has_more: 1
                  status_code: 0
                  aweme_list:
                    '0':
                      aweme_id: '7604286086189288718'
                      desc: "Drove by a couple Bills fans in SF.    Rolled down my window and tried to cheer them up.   Because that’s what Patriots do!   #billsmafia\_"
                      create_time: 1770510847
                      author:
                        uid: '6659752019493208069'
                        short_id: '0'
                        nickname: Dave Portnoy
                        signature: El Presidente/Barstool Sports Founder.
                        avatar_larger:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=7cc102a5&x-expires=1770649200&x-signature=Q8lsnQjnRhnbZNcw4NAPtsqBulc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=265e58b4&x-expires=1770649200&x-signature=zJ0gkSyOzRAPnkmh2NidVS2xkCc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=f2d3e9c7&x-expires=1770649200&x-signature=ckL4zwNFk7VyIjWzRsrtVIZOP8g%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        avatar_thumb:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=aefa6c3b&x-expires=1770649200&x-signature=6Qx03TRX%2BI7sEUVbFDQiGjgWST0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=1b3ec87f&x-expires=1770649200&x-signature=ftr%2BmpUHl16Go1ZxcCHO00D5%2F%2BY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e1815778&x-expires=1770649200&x-signature=AMLCO1rSBHkD8j0XLY%2F%2FPSvRJwM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        avatar_medium:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=19d3e2f1&x-expires=1770649200&x-signature=Kll8fQQ68KpJGiH%2Bgr11%2FDxC7VQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=82b92eaf&x-expires=1770649200&x-signature=0ceU6EfJ7wt5ZFCQYEwp6acKdtU%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=bbc64fa9&x-expires=1770649200&x-signature=SITAwm%2B0jDBZk3%2FqhJnbkERsLdc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        follow_status: 0
                        aweme_count: 2329
                        following_count: 90
                        follower_count: 4567499
                        favoriting_count: 205
                        total_favorited: 217640291
                        is_block: false
                        hide_search: true
                        custom_verify: Verified account
                        unique_id: stoolpresidente
                        bind_phone: ''
                        special_lock: 1
                        need_recommend: 0
                        has_facebook_token: false
                        has_twitter_token: false
                        fb_expire_time: 0
                        tw_expire_time: 0
                        has_youtube_token: false
                        youtube_expire_time: 0
                        room_id: 0
                        live_verify: 0
                        authority_status: 0
                        verify_info: ''
                        shield_follow_notice: 0
                        shield_digg_notice: 0
                        shield_comment_notice: 0
                        share_info:
                          share_url: ''
                          share_desc: ''
                          share_title: ''
                          share_qrcode_url:
                            uri: ''
                            url_list: {}
                            width: 720
                            height: 720
                            url_prefix: null
                          share_title_myself: ''
                          share_title_other: ''
                          share_desc_info: ''
                          now_invitation_card_image_urls: null
                        with_commerce_entry: false
                        verification_type: 0
                        original_musician:
                          music_count: 0
                          music_used_count: 0
                          digg_count: 0
                          new_release_clip_ids: null
                        enterprise_verify_reason: ''
                        is_ad_fake: false
                        followers_detail: null
                        account_region: ''
                        commerce_user_level: 0
                        live_agreement: 0
                        platform_sync_info: null
                        with_shop_entry: false
                        is_discipline_member: false
                        secret: 0
                        has_orders: false
                        prevent_download: false
                        show_image_bubble: false
                        geofencing: null
                        unique_id_modify_time: 1770562809
                        video_icon:
                          uri: ''
                          url_list: {}
                          width: 720
                          height: 720
                          url_prefix: null
                        ins_id: stoolpresidente
                        google_account: ''
                        youtube_channel_id: ''
                        youtube_channel_title: ''
                        apple_account: 0
                        is_phone_binded: false
                        accept_private_policy: false
                        twitter_id: ''
                        twitter_name: ''
                        user_canceled: false
                        has_email: false
                        status: 1
                        create_time: 0
                        avatar_uri: tos-maliva-avt-0068/7310178711609032710
                        follower_status: 0
                        comment_setting: 0
                        duet_setting: 0
                        user_rate: 17
                        download_setting: 0
                        download_prompt_ts: 1550594548
                        react_setting: 0
                        live_commerce: false
                        cover_url: {}
                        language: en
                        has_insights: false
                        share_qrcode_uri: ''
                        item_list: null
                        user_mode: 1
                        user_period: 0
                        is_star: false
                        cv_level: ''
                        type_label: null
                        ad_cover_url: null
                        comment_filter_status: 0
                        avatar_168x168:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=c5b2e168&x-expires=1770649200&x-signature=sEVut4KK0WWmqj6mI1zlGR7lLy0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=689243ab&x-expires=1770649200&x-signature=p4O4xCftYSdGORVuq5koETk08Pk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=5253e3c6&x-expires=1770649200&x-signature=EqG3nEORDi9wM3HpF3Q6RW%2Bog9I%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        avatar_300x300:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=dc57f7be&x-expires=1770649200&x-signature=mj1p9w0W%2F%2FP8up9QQa3EQvhlCFI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=81ac5bda&x-expires=1770649200&x-signature=FPIyd9b33B%2F%2FDsaK%2BkHT8QAsyXU%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=ee4a88c9&x-expires=1770649200&x-signature=p8pTJPnEwTYXkDB%2Fnshh%2BJLDPfs%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        relative_users: null
                        cha_list: null
                        sec_uid: >-
                          MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD
                        need_points: null
                        homepage_bottom_toast: null
                        can_set_geofencing: null
                        white_cover_url: null
                        user_tags: null
                        stitch_setting: 0
                        bold_fields: null
                        search_highlight: null
                        mutual_relation_avatars: null
                        events: null
                        advance_feature_item_order: null
                        mention_status: 1
                        special_account:
                          special_account_list: null
                        advanced_feature_info: null
                        user_profile_guide: null
                        shield_edit_field_info: null
                        friends_status: 0
                        can_message_follow_status_list:
                          '0': 0
                          '1': 1
                          '2': 2
                          '3': 4
                        account_labels: null
                        user_now_pack_info: {}
                        fake_data_info: {}
                        is_mute: 0
                        avatar_meta_info_list:
                          '0':
                            avatar_category: 6
                            avatar_meta_info: {}
                          '1':
                            avatar_category: 1
                            avatar_meta_info:
                              avatar_source: 1
                        reply_with_video_flag: 4
                        user_spark_info: {}
                        is_mute_non_story_post: 0
                        is_mute_story: 0
                        is_mute_lives: 0
                        enabled_filter_all_comments: false
                      music:
                        id: 7604286097106996000
                        id_str: '7604286097106995981'
                        title: original sound - stoolpresidente
                        author: Dave Portnoy
                        album: ''
                        cover_large:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=265e58b4&x-expires=1770649200&x-signature=zJ0gkSyOzRAPnkmh2NidVS2xkCc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=7cc102a5&x-expires=1770649200&x-signature=Q8lsnQjnRhnbZNcw4NAPtsqBulc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=c9338304&x-expires=1770649200&x-signature=o%2BeUsgz2wn2U6KHpBdRa1QtKCnA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        cover_medium:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=19d3e2f1&x-expires=1770649200&x-signature=Kll8fQQ68KpJGiH%2Bgr11%2FDxC7VQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=82b92eaf&x-expires=1770649200&x-signature=0ceU6EfJ7wt5ZFCQYEwp6acKdtU%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=bbc64fa9&x-expires=1770649200&x-signature=SITAwm%2B0jDBZk3%2FqhJnbkERsLdc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        cover_thumb:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=1b3ec87f&x-expires=1770649200&x-signature=ftr%2BmpUHl16Go1ZxcCHO00D5%2F%2BY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=aefa6c3b&x-expires=1770649200&x-signature=6Qx03TRX%2BI7sEUVbFDQiGjgWST0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=220913c2&x-expires=1770649200&x-signature=NxGD8OWykWae%2FpUTQaqO1BrU144%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        play_url:
                          uri: >-
                            https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7604286179302771470.mp3
                          url_list:
                            '0': >-
                              https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7604286179302771470.mp3
                          width: 720
                          height: 720
                          url_prefix: null
                        source_platform: 72
                        duration: 17
                        extra: >-
                          {"amplitude_peak":0,"beats":{},"can_read":true,"can_reuse":true,"erase_type":0,"erase_uid":0,"extract_item_id":7604286086189288718,"from_user_id":7576428750372668430,"full_song_beat_info":{},"full_song_beats":{},"has_edited":0,"is_batch_take_down_music":false,"is_ugc_mapping":false,"is_used":0,"loudness_lufs":0,"music_vid":"v12942gd0000d63tk0fog65hbinijhh0","owner_id":6659752019493208069,"resource_status":0,"review_unshelve_reason":0,"reviewed":0,"schedule_search_time":0}
                        user_count: 0
                        position: null
                        collect_stat: 0
                        status: 1
                        offline_desc: ''
                        owner_id: '6659752019493208069'
                        owner_nickname: Dave Portnoy
                        is_original: false
                        mid: '7604286097106995981'
                        binded_challenge_id: 0
                        author_deleted: false
                        owner_handle: stoolpresidente
                        author_position: null
                        prevent_download: false
                        external_song_info: {}
                        sec_uid: >-
                          MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD
                        avatar_thumb:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=1b3ec87f&x-expires=1770649200&x-signature=ftr%2BmpUHl16Go1ZxcCHO00D5%2F%2BY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=aefa6c3b&x-expires=1770649200&x-signature=6Qx03TRX%2BI7sEUVbFDQiGjgWST0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=220913c2&x-expires=1770649200&x-signature=NxGD8OWykWae%2FpUTQaqO1BrU144%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        avatar_medium:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=19d3e2f1&x-expires=1770649200&x-signature=Kll8fQQ68KpJGiH%2Bgr11%2FDxC7VQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=82b92eaf&x-expires=1770649200&x-signature=0ceU6EfJ7wt5ZFCQYEwp6acKdtU%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=bbc64fa9&x-expires=1770649200&x-signature=SITAwm%2B0jDBZk3%2FqhJnbkERsLdc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        preview_start_time: 0
                        preview_end_time: 0
                        is_commerce_music: true
                        is_original_sound: true
                        audition_duration: 17
                        shoot_duration: 17
                        artists: {}
                        lyric_short_position: null
                        mute_share: false
                        tag_list: null
                        dmv_auto_show: false
                        is_author_artist: false
                        is_pgc: false
                        is_matched_metadata: false
                        is_audio_url_with_cookie: false
                        video_duration: 17
                        search_highlight: null
                        multi_bit_rate_play_info: null
                        duration_high_precision:
                          duration_precision: 17.34525
                          shoot_duration_precision: 17.34525
                          audition_duration_precision: 17.34525
                          video_duration_precision: 17.34525
                        can_not_reuse: false
                        is_play_music: false
                        commercial_right_type: 2
                        tt_to_dsp_song_infos: null
                        log_extra: >-
                          {"meta_song_matched_type":"not_found","ttm_matched_type":"","ttm_track_id":"","matched_meta_song_id":"","vid":"","owner_id":""}
                        is_shooting_allow: true
                        recommend_status: 100
                        has_commerce_right: true
                        meme_song_info: {}
                        uncert_artists: null
                        allow_offline_music_to_detail_page: false
                        create_time: 1770510850
                        can_be_stitched: true
                        music_group_use_count: 0
                        has_human_voice: true
                        mute_type: 0
                        music_ugid: 7604286097106996000
                        music_ugid_use_count: 0
                        has_commerce_right_strict: true
                        is_commerce_music_strict: true
                      cha_list:
                        '0':
                          cid: '1891745'
                          cha_name: billsmafia
                          desc: ''
                          schema: aweme://aweme/challenge/detail?cid=1891745
                          author:
                            followers_detail: null
                            platform_sync_info: null
                            geofencing: null
                            cover_url: null
                            item_list: null
                            type_label: null
                            ad_cover_url: null
                            relative_users: null
                            cha_list: null
                            need_points: null
                            homepage_bottom_toast: null
                            can_set_geofencing: null
                            white_cover_url: null
                            user_tags: null
                            bold_fields: null
                            search_highlight: null
                            mutual_relation_avatars: null
                            events: null
                            advance_feature_item_order: null
                            advanced_feature_info: null
                            user_profile_guide: null
                            shield_edit_field_info: null
                            can_message_follow_status_list: null
                            account_labels: null
                          user_count: 0
                          share_info:
                            share_url: >-
                              https://www.tiktok.com/tag/billsmafia?_r=1&name=billsmafia&u_code=f0gf99f8fh3336&_d=f1ie2id2fkj3fc&share_challenge_id=1891745&sharer_language=en&source=h5_m
                            share_desc: 'Check out #billsmafia on TikTok!'
                            share_title: >-
                              It is a becoming a big trend on TikTok now! Click
                              here: billsmafia
                            bool_persist: 0
                            share_title_myself: ''
                            share_title_other: ''
                            share_signature_url: ''
                            share_signature_desc: ''
                            share_quote: ''
                            share_desc_info: 'Check out #billsmafia on TikTok!'
                            now_invitation_card_image_urls: null
                          connect_music: {}
                          type: 1
                          sub_type: 0
                          is_pgcshow: false
                          collect_stat: 0
                          is_challenge: 0
                          view_count: 0
                          is_commerce: false
                          hashtag_profile: ''
                          cha_attrs: null
                          banner_list: null
                          extra_attr:
                            is_live: false
                          show_items: null
                          search_highlight: null
                          use_count: 0
                      video:
                        play_addr:
                          uri: v12044gd0000d63tjrnog65if3b62qgg
                          url_list:
                            '0': >-
                              https://v16m.tiktokcdn-us.com/2777b5886c38a8636647ebf8f3e12146/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oYhRkhE2ZCes4HSgENnu24gIDfAmFDQahBkp9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2438&bt=1219&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=OzU1ZDM0Zjc3NTo0OGQ5NkBpanQ5Nmw5cnV3OTMzZzczNEBhLTIuMi4wNl4xLmFgMDFhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '1': >-
                              https://v19.tiktokcdn-us.com/442c38157e13b0d8a381240f1cd86c1a/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oYhRkhE2ZCes4HSgENnu24gIDfAmFDQahBkp9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2438&bt=1219&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=OzU1ZDM0Zjc3NTo0OGQ5NkBpanQ5Nmw5cnV3OTMzZzczNEBhLTIuMi4wNl4xLmFgMDFhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '2': >-
                              https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=d3463ac5d11742a4943c11501a5202d8&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjIwMzUzM2IyNzhlOGI1ZWYxZWZlMjIxYWQxOWI3YmRl&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                          width: 720
                          height: 1280
                          url_key: v12044gd0000d63tjrnog65if3b62qgg_h264_720p_1248787
                          data_size: 2700502
                          file_hash: fffe72699df13c3fa449572233fb1054
                          file_cs: c:0-15824-9224
                          url_prefix: null
                        cover:
                          uri: >-
                            tos-useast5-p-0068-tx/ocKEZ2hgIekESchBaHEDfDhRnuAFDI9gQjZpIN
                          url_list:
                            '0': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocKEZ2hgIekESchBaHEDfDhRnuAFDI9gQjZpIN~tplv-tiktokx-cropcenter-q:300:400:q72.heic?dr=8596&refresh_token=cfac0f4a&x-expires=1770649200&x-signature=iV73PBu%2Fg7Azf%2BbsPA99whoa2s4%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover
                            '1': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocKEZ2hgIekESchBaHEDfDhRnuAFDI9gQjZpIN~tplv-tiktokx-cropcenter-q:300:400:q72.heic?dr=8596&refresh_token=0955aa62&x-expires=1770649200&x-signature=jHsmAAPUNdxJ%2BD5eo5Bw4r679IY%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover
                            '2': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocKEZ2hgIekESchBaHEDfDhRnuAFDI9gQjZpIN~tplv-tiktokx-cropcenter-q:300:400:q72.jpeg?dr=8596&refresh_token=919a35c9&x-expires=1770649200&x-signature=tlfwTln6x8bvU5azuFPf27O2LFA%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover
                          width: 720
                          height: 720
                          data_size: 0
                          url_prefix: null
                        height: 1280
                        width: 720
                        dynamic_cover:
                          uri: >-
                            tos-useast5-p-0068-tx/o0BmfTLICC7dfAjrTMAAQWQHPaMeUDQWx8JdAk
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0BmfTLICC7dfAjrTMAAQWQHPaMeUDQWx8JdAk~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=0b6b695b&x-expires=1770649200&x-signature=UIQkXT0TNmm92dsKhGZHmmBCMuQ%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0BmfTLICC7dfAjrTMAAQWQHPaMeUDQWx8JdAk~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=d8013d0a&x-expires=1770649200&x-signature=mebrDJ5L4iHtfhWpvIheYfWxdMY%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0BmfTLICC7dfAjrTMAAQWQHPaMeUDQWx8JdAk~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=2720b96d&x-expires=1770649200&x-signature=ZD226K0SFGgNWjac5TZQucRGUzY%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                          width: 720
                          height: 720
                          data_size: 0
                          url_prefix: null
                        origin_cover:
                          uri: >-
                            tos-useast5-p-0068-tx/oEERzeQPkcQaQhDCBgfCF8ASBnQ1AvBuD9hptE
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEERzeQPkcQaQhDCBgfCF8ASBnQ1AvBuD9hptE~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=d783979b&x-expires=1770649200&x-signature=9Kn0gCFo1HK641K9UJYPdH3bWuw%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEERzeQPkcQaQhDCBgfCF8ASBnQ1AvBuD9hptE~tplv-dmt-adapt-360p.heic?dr=8597&refresh_token=ec25425b&x-expires=1770649200&x-signature=V%2FAiRrBM76txqV4xZJgExLgx7qU%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEERzeQPkcQaQhDCBgfCF8ASBnQ1AvBuD9hptE~tplv-dmt-adapt-360p.jpeg?dr=8597&refresh_token=bcf08d3c&x-expires=1770649200&x-signature=Hiqr1LLbEM1MqBLMx%2FyUV6MaaZ4%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover
                          width: 720
                          height: 720
                          data_size: 0
                          url_prefix: null
                        ratio: 720p
                        download_addr:
                          uri: v12044gd0000d63tjrnog65if3b62qgg
                          url_list:
                            '0': >-
                              https://v16m.tiktokcdn-us.com/6aff42bc7e1aca7ff3e0364992b783ed/6988f96a/video/tos/useast5/tos-useast5-pve-0068-tx/okaZ297eDE2ghHknAhFQSYRuaBflpCDIESgNEh/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2290&bt=1145&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=ODQ8ZWc2MzZmaWg3ZWk1ZUBpanQ5Nmw5cnV3OTMzZzczNEAxXzVhNDI2XjYxYDQzNmM2YSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '1': >-
                              https://v19.tiktokcdn-us.com/03a34b48ad8357b4fe30f3bc7d5f864d/6988f96a/video/tos/useast5/tos-useast5-pve-0068-tx/okaZ297eDE2ghHknAhFQSYRuaBflpCDIESgNEh/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2290&bt=1145&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=ODQ8ZWc2MzZmaWg3ZWk1ZUBpanQ5Nmw5cnV3OTMzZzczNEAxXzVhNDI2XjYxYDQzNmM2YSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '2': >-
                              https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d63tjrnog65if3b62qgg&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=9bf29f6b74ce4f9ca390537ddb89b145&item_id=7604286086189288718&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjY3MTA4NzU4YWUyZDE0MTRkYTM4OGYyNzljOTY1OTRi&shp=d05b14bd&shcp=-
                          width: 720
                          height: 720
                          data_size: 2537451
                          file_cs: c:0-15824-9224
                          url_prefix: null
                        has_watermark: true
                        bit_rate:
                          '0':
                            gear_name: adapt_lowest_1080_1
                            quality_type: 2
                            bit_rate: 1545514
                            play_addr:
                              uri: v12044gd0000d63tjrnog65if3b62qgg
                              url_list:
                                '0': >-
                                  https://v16m.tiktokcdn-us.com/a57f69cfdb8082c7fd427d9ed7a4d2d1/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oo4ECf9HCgJRDPGIgzkEAuBS2DhFQaPap1n8Xe/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=3018&bt=1509&cs=2&ds=4&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=15&rc=aDo3NWQ6N2Y2N2U3MzlkPEBpanQ5Nmw5cnV3OTMzZzczNEA2YmEtYjAuNWAxNC8zMl4yYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '1': >-
                                  https://v19.tiktokcdn-us.com/66a766f5333f8e1d69227c843c87eab6/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oo4ECf9HCgJRDPGIgzkEAuBS2DhFQaPap1n8Xe/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=3018&bt=1509&cs=2&ds=4&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=15&rc=aDo3NWQ6N2Y2N2U3MzlkPEBpanQ5Nmw5cnV3OTMzZzczNEA2YmEtYjAuNWAxNC8zMl4yYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '2': >-
                                  https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=59aa5660247b44c38c1437ea02d4e79e&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjE3MWZkMTRlODkzZjBkMWQ5NzYzODBlMjg5NGRhMDJk&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                              width: 1080
                              height: 1920
                              url_key: >-
                                v12044gd0000d63tjrnog65if3b62qgg_bytevc1_1080p_1545514
                              data_size: 3342176
                              file_hash: 36e269cac029d76c8c84a02d7d84da4a
                              file_cs: c:0-16006-6668
                              url_prefix: null
                            is_bytevc1: 1
                            dub_infos: null
                            HDR_type: ''
                            HDR_bit: ''
                            video_extra: >-
                              {"PktOffsetMap":"[{\"time\": 1, \"offset\":
                              263293}, {\"time\": 2, \"offset\": 359941},
                              {\"time\": 3, \"offset\": 469637}, {\"time\": 4,
                              \"offset\": 559209}, {\"time\": 5, \"offset\":
                              699384}, {\"time\": 10, \"offset\":
                              1712436}]","mvmaf":"{\"v2.0\": {\"srv1\":
                              {\"v1080\": 98.643, \"v960\": 99.399, \"v864\":
                              99.55, \"v720\": 99.773}, \"ori\": {\"v1080\":
                              93.813, \"v960\": 95.25, \"v864\": 95.944,
                              \"v720\":
                              97.29}}}","ufq":"{\"enh\":81.677,\"playback\":{\"ori\":79.49,\"srv1\":81.311},\"src\":75.107,\"trans\":79.49,\"version\":\"v1.2\"}","volume_info_json":"","transcode_feature_id":"c2084cc0ac5e8b853c627ecc971f13fd","dec_info":"","gearvqm":"","audio_bit_rate":96644,"ps_info":"{\"vps\":
                              \"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\", \"sps\":
                              \"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\",
                              \"pps\": \"AcElPAiQ\"}"}
                            fps: 30
                            fid_profile_labels: '{"srqa3_0_ori":"50","srqa3_0_srv1":"55"}'
                          '1':
                            gear_name: adapt_lower_720_2
                            quality_type: 14
                            bit_rate: 659995
                            play_addr:
                              uri: v12044gd0000d63tjrnog65if3b62qgg
                              url_list:
                                '0': >-
                                  https://v16m.tiktokcdn-us.com/bac0d65c3fc61113434fb36b7212f710/6988f96a/video/tos/useast5/tos-useast5-ve-0068c002-tx/ooeNIiBpDgXEOGRhBEPEfQaAHunDhFkn9Sh3ZE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1288&bt=644&cs=5&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=14&rc=aDw7aGVkNDZnO2k1PGc3ZUBpanQ5Nmw5cnV3OTMzZzczNEBhXmBjMS0tXzQxLl5fMi9fYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '1': >-
                                  https://v19.tiktokcdn-us.com/43f22ecadbcd205cbda0bbbe1dfee951/6988f96a/video/tos/useast5/tos-useast5-ve-0068c002-tx/ooeNIiBpDgXEOGRhBEPEfQaAHunDhFkn9Sh3ZE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1288&bt=644&cs=5&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=14&rc=aDw7aGVkNDZnO2k1PGc3ZUBpanQ5Nmw5cnV3OTMzZzczNEBhXmBjMS0tXzQxLl5fMi9fYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '2': >-
                                  https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=bb245db9a21f487db3010a4bfec8a9de&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjY2ZjUwMWRkNzBmZjUxZjY1ZDk4YTdkOTAwMGIwZmRk&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                              width: 720
                              height: 1280
                              url_key: >-
                                v12044gd0000d63tjrnog65if3b62qgg_bytevc2_720p_659995
                              data_size: 1427240
                              file_hash: 92f888a11a87bb8c8cde5bf249a6a74a
                              file_cs: c:0-16275-f55d
                              url_prefix: null
                            is_bytevc1: 2
                            dub_infos: null
                            HDR_type: ''
                            HDR_bit: ''
                            video_extra: >-
                              {"PktOffsetMap":"[{\"time\": 1, \"offset\":
                              158042}, {\"time\": 2, \"offset\": 195007},
                              {\"time\": 3, \"offset\": 228436}, {\"time\": 4,
                              \"offset\": 270120}, {\"time\": 5, \"offset\":
                              339017}, {\"time\": 10, \"offset\":
                              761323}]","mvmaf":"{\"v2.0\": {\"srv1\":
                              {\"v1080\": 94.095, \"v960\": 95.358, \"v864\":
                              95.693, \"v720\": 96.784}, \"ori\": {\"v1080\":
                              85.157, \"v960\": 87.094, \"v864\": 89.242,
                              \"v720\":
                              91.781}}}","ufq":"{\"enh\":75.107,\"playback\":{\"ori\":64.264,\"srv1\":73.107},\"src\":75.107,\"trans\":64.264,\"version\":\"v1.2\"}","volume_info_json":"","transcode_feature_id":"398b00a3a79e904ef5421940da02ff2a","dec_info":"{\"simp\":
                              [0, 17, 18, 26, 3, 9, 10, 11, 17, 18, 19, 25, 26,
                              27, 51], \"vmaf_loss\": [0.0, 0.348, 0.525, 0.546,
                              1.446, 0.342, 0.52, 1.453, 0.348, 0.525, 1.53,
                              0.365, 0.546, 1.531, 1.46], \"dec2play\": [107519,
                              106628, 105141, 104743, 97590, 107366, 105893,
                              97205, 106628, 105141, 96641, 106058, 104743,
                              96626, 93844]}","gearvqm":"{\"v3.0\": {\"ori\":
                              95.634, \"sr20\": 102.6}}","audio_bit_rate":96652}
                            fps: 30
                            fid_profile_labels: '{"srqa3_0_ori":"0","srqa3_0_srv1":"0"}'
                          '2':
                            gear_name: adapt_540_2
                            quality_type: 28
                            bit_rate: 550361
                            play_addr:
                              uri: v12044gd0000d63tjrnog65if3b62qgg
                              url_list:
                                '0': >-
                                  https://v16m.tiktokcdn-us.com/c56ecc9c60277d86fc627629277cc5a8/6988f96a/video/tos/useast5/tos-useast5-pve-0068-tx/okERzfIPkU2aRmDCBgfCF8ASgnQ1CC7uD9hpuE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1074&bt=537&cs=5&ds=6&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=11&rc=PDo8ZjhpZzkzNjM1N2kzOUBpanQ5Nmw5cnV3OTMzZzczNEA0MjMtYC1fXzYxMTAzNS1gYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '1': >-
                                  https://v19.tiktokcdn-us.com/6eb41e490d5ca70d6f9765cb2fa4cf0e/6988f96a/video/tos/useast5/tos-useast5-pve-0068-tx/okERzfIPkU2aRmDCBgfCF8ASgnQ1CC7uD9hpuE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1074&bt=537&cs=5&ds=6&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=11&rc=PDo8ZjhpZzkzNjM1N2kzOUBpanQ5Nmw5cnV3OTMzZzczNEA0MjMtYC1fXzYxMTAzNS1gYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '2': >-
                                  https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c6008f6432404390b6bd0fc50c695779&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjNiM2E5OTJjNjJmMTZiMTA4MzNlMWNlYjQ3ZDMxZWVi&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                              width: 576
                              height: 1024
                              url_key: >-
                                v12044gd0000d63tjrnog65if3b62qgg_bytevc2_540p_550361
                              data_size: 1190156
                              file_hash: 28287ee9c86c1290b1f0c5d3d3fc9a78
                              file_cs: c:0-16275-b3ad
                              url_prefix: null
                            is_bytevc1: 2
                            dub_infos: null
                            HDR_type: ''
                            HDR_bit: ''
                            video_extra: >-
                              {"PktOffsetMap":"[{\"time\": 1, \"offset\":
                              129917}, {\"time\": 2, \"offset\": 161435},
                              {\"time\": 3, \"offset\": 188247}, {\"time\": 4,
                              \"offset\": 222022}, {\"time\": 5, \"offset\":
                              277310}, {\"time\": 10, \"offset\":
                              622946}]","mvmaf":"{\"v2.0\": {\"srv1\":
                              {\"v1080\": 94.009, \"v960\": 95.156, \"v864\":
                              96.307, \"v720\": 97.655}, \"ori\": {\"v1080\":
                              82.018, \"v960\": 84.669, \"v864\": 86.699,
                              \"v720\":
                              90.61}}}","ufq":"{\"enh\":75.107,\"playback\":{\"ori\":61.871,\"srv1\":73.021},\"src\":75.107,\"trans\":61.871,\"version\":\"v1.2\"}","volume_info_json":"","transcode_feature_id":"9c9f5d408fbfab55c019243f36790732","dec_info":"{\"simp\":
                              [0, 0, 17, 18, 3, 9, 10, 11, 17, 18, 19, 25, 26,
                              27, 51], \"vmaf_loss\": [0.0, 0.0, 0.392, 0.653,
                              1.817, 0.432, 0.686, 1.806, 0.392, 0.653, 1.723,
                              0.452, 0.74, 1.856, 1.722], \"dec2play\": [78418,
                              78418, 77712, 76766, 73158, 78126, 77112, 72881,
                              77712, 76766, 71382, 78065, 76437, 71304,
                              69878]}","gearvqm":"{\"v3.0\": {\"ori\": 93.006,
                              \"sr20\": 101.912}}","audio_bit_rate":64503}
                            fps: 30
                            fid_profile_labels: '{"srqa3_0_srv1":"0","srqa3_0_ori":"0"}'
                          '3':
                            gear_name: lowest_540_1
                            quality_type: 25
                            bit_rate: 378970
                            play_addr:
                              uri: v12044gd0000d63tjrnog65if3b62qgg
                              url_list:
                                '0': >-
                                  https://v16m.tiktokcdn-us.com/8fe5295de49dbe2804112c18ebe55b0b/6988f96a/video/tos/useast5/tos-useast5-pve-0068-tx/oYg1MfaNDDOpFUZEuHE29dIxhBSEehhgknRHnA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=740&bt=370&cs=2&ds=6&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=5&rc=Nzo3Z2c5PDQ0aDc0ZTk4ZEBpanQ5Nmw5cnV3OTMzZzczNEAvYjBfLl41XzUxNmAvMzExYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '1': >-
                                  https://v19.tiktokcdn-us.com/4a43f4eb717c5a8281e5c8eb7639f950/6988f96a/video/tos/useast5/tos-useast5-pve-0068-tx/oYg1MfaNDDOpFUZEuHE29dIxhBSEehhgknRHnA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=740&bt=370&cs=2&ds=6&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=5&rc=Nzo3Z2c5PDQ0aDc0ZTk4ZEBpanQ5Nmw5cnV3OTMzZzczNEAvYjBfLl41XzUxNmAvMzExYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                                '2': >-
                                  https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4a45662bc1944e81b189a61dbd34e724&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjE2OWQ1ZDI0MjI1ZTMwM2RiNDk2NWYyMmE0MzRiZmQ3&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                              width: 576
                              height: 1024
                              url_key: >-
                                v12044gd0000d63tjrnog65if3b62qgg_bytevc1_540p_378970
                              data_size: 819523
                              file_hash: 6157f9ff6b9dd28f71f491aaa4b5c34d
                              file_cs: c:0-16023-d019
                              url_prefix: null
                            is_bytevc1: 1
                            dub_infos: null
                            HDR_type: ''
                            HDR_bit: ''
                            video_extra: >-
                              {"PktOffsetMap":"[{\"time\": 1, \"offset\":
                              77994}, {\"time\": 2, \"offset\": 99807},
                              {\"time\": 3, \"offset\": 123569}, {\"time\": 4,
                              \"offset\": 144246}, {\"time\": 5, \"offset\":
                              177894}, {\"time\": 10, \"offset\":
                              417610}]","mvmaf":"{\"v2.0\": {\"srv1\":
                              {\"v1080\": 84.813, \"v960\": 86.874, \"v864\":
                              89.07, \"v720\": 92.046}, \"ori\": {\"v1080\":
                              73.422, \"v960\": 76.23, \"v864\": 79.061,
                              \"v720\":
                              83.404}}}","ufq":"{\"enh\":75.107,\"playback\":{\"ori\":55.424,\"srv1\":63.872},\"src\":75.107,\"trans\":55.424,\"version\":\"v1.2\"}","volume_info_json":"","transcode_feature_id":"74b1a23f90e8b37fe722094778ffdfb4","dec_info":"","gearvqm":"","audio_bit_rate":24316,"ps_info":"{\"vps\":
                              \"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\", \"sps\":
                              \"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\",
                              \"pps\": \"AcElPAiQ\"}"}
                            fps: 30
                            fid_profile_labels: '{"srqa3_0_ori":"0","srqa3_0_srv1":"0"}'
                        duration: 17300
                        play_addr_h264:
                          uri: v12044gd0000d63tjrnog65if3b62qgg
                          url_list:
                            '0': >-
                              https://v16m.tiktokcdn-us.com/2777b5886c38a8636647ebf8f3e12146/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oYhRkhE2ZCes4HSgENnu24gIDfAmFDQahBkp9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2438&bt=1219&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=OzU1ZDM0Zjc3NTo0OGQ5NkBpanQ5Nmw5cnV3OTMzZzczNEBhLTIuMi4wNl4xLmFgMDFhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '1': >-
                              https://v19.tiktokcdn-us.com/442c38157e13b0d8a381240f1cd86c1a/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oYhRkhE2ZCes4HSgENnu24gIDfAmFDQahBkp9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2438&bt=1219&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=OzU1ZDM0Zjc3NTo0OGQ5NkBpanQ5Nmw5cnV3OTMzZzczNEBhLTIuMi4wNl4xLmFgMDFhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '2': >-
                              https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=d3463ac5d11742a4943c11501a5202d8&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjIwMzUzM2IyNzhlOGI1ZWYxZWZlMjIxYWQxOWI3YmRl&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                          width: 720
                          height: 1280
                          url_key: v12044gd0000d63tjrnog65if3b62qgg_h264_720p_1248787
                          data_size: 2700502
                          file_hash: fffe72699df13c3fa449572233fb1054
                          file_cs: c:0-15824-9224
                          url_prefix: null
                        cdn_url_expired: 0
                        animated_cover:
                          uri: >-
                            tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=09de5a58&x-expires=1770649200&x-signature=jPbsFWAUX%2FZ2uYiItmLWtdt1ftw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=b72a31ea&x-expires=1770649200&x-signature=gW6bSuT1f9GzTIeoT8S0zIhCbt0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=a3f62bdf&x-expires=1770649200&x-signature=3N08LzWT%2BKbZPqdgrQXK6nhLSu4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                          url_prefix: null
                        need_set_token: false
                        CoverTsp: 12.14036722135417
                        misc_download_addrs: {}
                        is_callback: true
                        tags: null
                        big_thumbs: {}
                        play_addr_bytevc1:
                          uri: v12044gd0000d63tjrnog65if3b62qgg
                          url_list:
                            '0': >-
                              https://v16m.tiktokcdn-us.com/8704d569506c4a01a26d21a808e2d067/6988f96a/video/tos/useast5/tos-useast5-ve-0068c002-tx/oUaHR9hmpISBEWDk2BhFyKnEEZDQeJAhugf05N/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1274&bt=637&cs=2&ds=6&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=11&rc=M2k8OmdkZTxnNjg4NmU7NkBpanQ5Nmw5cnV3OTMzZzczNEAyMi0vMWI2NjAxNDYxM2BhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '1': >-
                              https://v19.tiktokcdn-us.com/2037fdf6655014a7c2a627c792c87408/6988f96a/video/tos/useast5/tos-useast5-ve-0068c002-tx/oUaHR9hmpISBEWDk2BhFyKnEEZDQeJAhugf05N/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=1274&bt=637&cs=2&ds=6&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=11&rc=M2k8OmdkZTxnNjg4NmU7NkBpanQ5Nmw5cnV3OTMzZzczNEAyMi0vMWI2NjAxNDYxM2BhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '2': >-
                              https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=d3c86b439575433d999bea4d27095f50&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjk3ZmI4MzhkZjlhYjFmMDYwZGJmMzEzMjFhZjI5Njk1&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                          width: 576
                          height: 1024
                          url_key: v12044gd0000d63tjrnog65if3b62qgg_bytevc1_540p_652742
                          data_size: 1411555
                          file_hash: 377fba09b5d97829939b7271c300e43c
                          file_cs: c:0-16021-d2b0
                          url_prefix: null
                        is_bytevc1: 0
                        meta: >-
                          {"LoudnessRange":"12","LoudnessRangeEnd":"-23.3","LoudnessRangeStart":"-35.3","MaximumMomentaryLoudness":"-19.5","MaximumShortTermLoudness":"-23.1","Version":"2","VolumeInfoJson":"{\"Loudness\":-24.4,\"LoudnessRange\":12,\"Metrics\":{\"Version\":\"1.4.2\",\"AEDInfo\":{\"SpeechRatio\":0.71,\"MusicRatio\":0.24,\"SingingRatio\":0},\"AnchorLoudness\":{\"Speech\":{\"Loud\":-24.22,\"LoudR\":10.2,\"LoudRE\":-23.2,\"LoudRS\":-33.4,\"MaxMomLoud\":-20.6,\"MaxSTLoud\":-23.11}},\"Cutoff\":{\"Spkr200G\":0.46,\"FCenL\":1925.03,\"FCenR\":1864.58,\"Spkr100G\":0.29,\"Spkr150G\":0.38},\"Loudness\":{\"Integrated\":-24.461},\"Phase\":{\"RMSDownmixDiff\":-0.336},\"RMSStats\":{\"LRDiff\":-0.171,\"LTotal\":-28.971,\"Peak\":-8.023,\"RTotal\":-28.799}},\"Peak\":0.39811,\"LoudnessRangeEnd\":-23.3,\"LoudnessRangeStart\":-35.3,\"MaximumMomentaryLoudness\":-19.5,\"MaximumShortTermLoudness\":-23.1,\"Version\":2}","bright_ratio_mean":"0.0982","brightness_mean":"88.2613","diff_overexposure_ratio":"0.0116","flight_id":"","loudness":"-24.4","overexposure_ratio_mean":"0.0828","peak":"0.39811","play_time_prob_dist":"[800,0.7959,3176.9133]","sp_extra_info":"{\"origin_width\":1080,\"origin_height\":1920,\"origin_create_at\":1770510849}","sr_score":"1.000","std_brightness":"5.4297","vq_score":"62.1"}
                        cover_is_custom: true
                        ai_dynamic_cover:
                          uri: >-
                            tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=09de5a58&x-expires=1770649200&x-signature=jPbsFWAUX%2FZ2uYiItmLWtdt1ftw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=b72a31ea&x-expires=1770649200&x-signature=gW6bSuT1f9GzTIeoT8S0zIhCbt0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=a3f62bdf&x-expires=1770649200&x-signature=3N08LzWT%2BKbZPqdgrQXK6nhLSu4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                          url_prefix: null
                        ai_dynamic_cover_bak:
                          uri: >-
                            tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=09de5a58&x-expires=1770649200&x-signature=jPbsFWAUX%2FZ2uYiItmLWtdt1ftw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=b72a31ea&x-expires=1770649200&x-signature=gW6bSuT1f9GzTIeoT8S0zIhCbt0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUhnbBSDpB2kaVhFEYO9LAIeEDZHfhAgNRIgSu~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=a3f62bdf&x-expires=1770649200&x-signature=3N08LzWT%2BKbZPqdgrQXK6nhLSu4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover
                          url_prefix: null
                        cla_info:
                          has_original_audio: 1
                          enable_auto_caption: 0
                          original_language_info:
                            lang: eng-US
                            language_id: 2
                            language_code: en
                            can_translate_realtime: false
                            original_caption_type: 1
                            is_burnin_caption: false
                            can_translate_realtime_skip_translation_lang_check: true
                            first_subtitle_time: 220
                          caption_infos:
                            '0':
                              lang: eng-US
                              language_id: 2
                              url: >-
                                https://v16-cla.tiktokcdn-us.com/db3e80add05bd7f37a1f41eb2f6c8dae/69b0320a/video/tos/useast5/tos-useast5-v-0068-tx/c06064c93e834af7a3f5fc469602f322/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=30128&bt=15064&cs=0&ds=4&ft=ge.El8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=13&rc=anQ5Nmw5cnV3OTMzZzczNEBpanQ5Nmw5cnV3OTMzZzczNEBkL19jMmRrZzBhLS1kMS9zYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e00078000
                              expire: 1773154826
                              caption_format: webvtt
                              complaint_id: 7604286280977141000
                              is_auto_generated: true
                              sub_id: 1863075812
                              sub_version: '1'
                              cla_subtitle_id: 7604286280977141000
                              translator_id: 0
                              language_code: en
                              is_original_caption: true
                              url_list:
                                '0': >-
                                  https://v16-cla.tiktokcdn-us.com/db3e80add05bd7f37a1f41eb2f6c8dae/69b0320a/video/tos/useast5/tos-useast5-v-0068-tx/c06064c93e834af7a3f5fc469602f322/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=30128&bt=15064&cs=0&ds=4&ft=ge.El8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=13&rc=anQ5Nmw5cnV3OTMzZzczNEBpanQ5Nmw5cnV3OTMzZzczNEBkL19jMmRrZzBhLS1kMS9zYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e00078000
                                '1': >-
                                  https://v19-cla.tiktokcdn-us.com/2163829181f39d8237285772e253143d/69b0320a/video/tos/useast5/tos-useast5-v-0068-tx/c06064c93e834af7a3f5fc469602f322/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=30128&bt=15064&cs=0&ds=4&ft=ge.El8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=13&rc=anQ5Nmw5cnV3OTMzZzczNEBpanQ5Nmw5cnV3OTMzZzczNEBkL19jMmRrZzBhLS1kMS9zYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e00078000
                                '2': >-
                                  https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjJmZjkwYTJhZWRlYzU3NzE3Nzc2NTE2MmZlZGNlZGJh&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d63tjrnog65if3b62qgg
                              caption_length: 128
                              variant: big_caption
                              subtitle_type: 1
                              source_tag: vv_counter,
                              translation_type: 0
                          creator_edited_caption_id: 0
                          vertical_positions: null
                          hide_original_caption: false
                          captions_type: 1
                          no_caption_reason: 0
                          is_author_dubbing_qualified: false
                        source_HDR_type: 0
                        bit_rate_audio: {}
                        did_profile_labels: ''
                        vid_profile_labels: '{"tier3":"10014"}'
                        download_no_watermark_addr:
                          uri: v12044gd0000d63tjrnog65if3b62qgg
                          url_list:
                            '0': >-
                              https://v16m.tiktokcdn-us.com/2777b5886c38a8636647ebf8f3e12146/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oYhRkhE2ZCes4HSgENnu24gIDfAmFDQahBkp9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2438&bt=1219&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=OzU1ZDM0Zjc3NTo0OGQ5NkBpanQ5Nmw5cnV3OTMzZzczNEBhLTIuMi4wNl4xLmFgMDFhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '1': >-
                              https://v19.tiktokcdn-us.com/442c38157e13b0d8a381240f1cd86c1a/6988f96a/video/tos/useast5/tos-useast5-ve-0068c003-tx/oYhRkhE2ZCes4HSgENnu24gIDfAmFDQahBkp9E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&ch=0&cr=13&dr=0&er=0&lr=all&net=0&cd=0%7C0%7C0%7C&cv=1&br=2438&bt=1219&cs=0&ds=3&ft=gKfIn8s6oA-O12NvQeY..IxRGQx0~3_45SY&mime_type=video_mp4&qs=0&rc=OzU1ZDM0Zjc3NTo0OGQ5NkBpanQ5Nmw5cnV3OTMzZzczNEBhLTIuMi4wNl4xLmFgMDFhYSNkL19jMmRrZzBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260208150009737A741413DA3A7A9B70&btag=e000b8000
                            '2': >-
                              https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=d3463ac5d11742a4943c11501a5202d8&is_play_url=1&item_id=7604286086189288718&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjIwMzUzM2IyNzhlOGI1ZWYxZWZlMjIxYWQxOWI3YmRl&source=PUBLISH&video_id=v12044gd0000d63tjrnog65if3b62qgg
                          width: 720
                          height: 1280
                          url_key: v12044gd0000d63tjrnog65if3b62qgg_h264_720p_1248787
                          data_size: 2700502
                          file_hash: fffe72699df13c3fa449572233fb1054
                          file_cs: c:0-15824-9224
                          url_prefix: null
                      share_url: >-
                        https://www.tiktok.com/@stoolpresidente/video/7604286086189288718?_r=1&u_code=f0gf99f8fh3336&preview_pb=0&sharer_language=en&_d=f1ie2id2fkj3fc&share_item_id=7604286086189288718&source=h5_m
                      user_digged: 0
                      statistics:
                        aweme_id: '7604286086189288718'
                        comment_count: 83
                        digg_count: 3160
                        download_count: 13
                        play_count: 44719
                        share_count: 159
                        forward_count: 0
                        lose_count: 0
                        lose_comment_count: 0
                        whatsapp_share_count: 1
                        collect_count: 63
                        repost_count: 0
                      status:
                        aweme_id: '7604286086189288718'
                        is_delete: false
                        allow_share: true
                        allow_comment: true
                        private_status: 0
                        in_reviewing: false
                        reviewed: 1
                        self_see: false
                        is_prohibited: false
                        download_status: 0
                        review_result:
                          review_status: 0
                      rate: 12
                      text_extra:
                        '0':
                          start: 126
                          end: 137
                          user_id: ''
                          type: 1
                          hashtag_name: billsmafia
                          hashtag_id: '1891745'
                          is_commerce: false
                          sec_uid: ''
                          tag_id: '723'
                      is_top: 0
                      label_top:
                        uri: tiktok-obj/1598708589477025.PNG
                        url_list:
                          '0': >-
                            https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          '1': >-
                            https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          '2': >-
                            https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                        width: 720
                        height: 720
                        url_prefix: null
                      share_info:
                        share_url: >-
                          https://www.tiktok.com/@stoolpresidente/video/7604286086189288718?_r=1&u_code=f0gf99f8fh3336&preview_pb=0&sharer_language=en&_d=f1ie2id2fkj3fc&share_item_id=7604286086189288718&source=h5_m
                        share_desc: 'Check out Dave Portnoy''s video! #TikTok'
                        share_title: 'Check out Dave Portnoy’s video! #TikTok > '
                        bool_persist: 0
                        share_title_myself: ''
                        share_title_other: ''
                        share_link_desc: ''
                        share_signature_url: ''
                        share_signature_desc: ''
                        share_quote: ''
                        whatsapp_desc: 'Download TikTok and watch more fun videos:'
                        share_desc_info: >-
                          TikTok: Make Every Second CountCheck out Dave
                          Portnoy’s video! #TikTok > 
                        now_invitation_card_image_urls: null
                      distance: ''
                      video_labels: {}
                      is_vr: false
                      is_ads: false
                      aweme_type: 0
                      cmt_swt: false
                      image_infos: null
                      risk_infos:
                        vote: false
                        warn: false
                        risk_sink: false
                        type: 0
                        content: ''
                      is_relieve: false
                      sort_label: ''
                      position: null
                      uniqid_position: null
                      author_user_id: 6659752019493208000
                      bodydance_score: 0
                      geofencing: null
                      is_hash_tag: 1
                      is_pgcshow: false
                      region: US
                      video_text: {}
                      collect_stat: 0
                      label_top_text: null
                      group_id: '7604286086189288718'
                      prevent_download: false
                      nickname_position: null
                      challenge_position: null
                      item_comment_settings: 0
                      with_promotional_music: false
                      long_video: null
                      item_duet: 0
                      item_react: 0
                      without_watermark: false
                      desc_language: en
                      interaction_stickers: null
                      misc_info: '{}'
                      origin_comment_ids: null
                      commerce_config_data: null
                      distribute_type: 1
                      video_control:
                        allow_download: false
                        share_type: 0
                        show_progress_bar: 1
                        draft_progress_bar: 1
                        allow_duet: true
                        allow_react: true
                        prevent_download_type: 2
                        allow_dynamic_wallpaper: true
                        timer_status: 1
                        allow_music: true
                        allow_stitch: true
                      has_vs_entry: false
                      commerce_info:
                        auction_ad_invited: false
                        with_comment_filter_words: false
                        adv_promotable: false
                        branded_content_type: 0
                        organic_log_extra: '{"req_id":"20260208150009737A741413DA3A7A9B70"}'
                        is_diversion_ad: 0
                      need_vs_entry: false
                      is_preview: 0
                      anchors: null
                      hybrid_label: null
                      geofencing_regions: null
                      have_dashboard: false
                      aweme_acl:
                        download_general:
                          code: 0
                          show_type: 2
                          transcode: 3
                          mute: false
                        download_mask_panel:
                          code: 0
                          show_type: 2
                          transcode: 3
                          mute: false
                        share_list_status: 0
                        share_general:
                          code: 0
                          show_type: 2
                          transcode: 3
                          mute: false
                        platform_list: null
                        share_action_list: null
                        press_action_list: null
                      has_promote_entry: 1
                      promote_toast: ''
                      item_stitch: 0
                      cover_labels: null
                      anchors_extras: ''
                      mask_infos: {}
                      search_highlight: null
                      promote_toast_key: ''
                      playlist_blocked: false
                      green_screen_materials: null
                      need_trim_step: false
                      interact_permission:
                        duet: 0
                        stitch: 0
                        duet_privacy_setting: 0
                        stitch_privacy_setting: 0
                        upvote: 0
                        allow_adding_to_story: 0
                        allow_create_sticker:
                          status: 0
                        allow_story_switch_to_post:
                          status: 1
                        allow_adding_as_post:
                          status: 0
                      question_list: null
                      content_desc: ''
                      content_desc_extra: {}
                      products_info: null
                      follow_up_publish_from_id: -1
                      disable_search_trending_bar: false
                      suggest_words:
                        suggest_words:
                          '0':
                            words:
                              '0':
                                word: dave portnoy joe pizza superbowl
                                word_id: '5502558444723109930'
                                penetrate_info: >-
                                  {"word_type_version_map":"","hot_level":"0","video_id":"","word_type_list":"","poi_card_id_list":"0","ecom_intent":"0","generate_time":"0","visualize_sug_product_id":"","is_ramandan_promotion":"","ecom_trigger_info_map":"","direct_to_tako":"","lvl3_cate_list":"","ecom_trigger_info":"","recall_reason":"search_result_darwin_recall","is_time_sensitive":"0","predict_ctr_score":0.00033837404445986077,"words_type_to_dmp_list":"","lvl1_category_id":"","words_type_to_voucher_ids":"","sug_user_id":""}
                                word_record:
                                  words_lang: en
                                  is_personalized: false
                                  words_label: ''
                                  qrec_json_info: ''
                                rich_sug_info:
                                  sug_reason: ''
                                  sug_reason_type: ''
                                  sug_icon_uri: ''
                                  sug_icon_type: ''
                            scene: feed_bar
                            hint_text: 'Search · '
                            qrec_virtual_enable: ''
                      group_id_list:
                        GroupdIdList0:
                          '0': 7604286086189288000
                        GroupdIdList1:
                          '0': 7604286086189288000
                      music_begin_time_in_ms: 0
                      music_end_time_in_ms: 17298
                      retry_type: 0
                      upvote_preload:
                        need_pull_upvote_info: false
                      is_paid_content: false
                      paid_content_info:
                        paid_collection_id: 0
                        is_paid_collection_intro: false
                        category: 0
                        episode_num: 0
                        should_show_series_purchase_label: false
                      branded_content_accounts: null
                      is_description_translatable: true
                      poi_re_tag_signal: 0
                      no_selected_music: false
                      follow_up_item_id_groups: ''
                      is_text_sticker_translatable: false
                      text_sticker_major_lang: un
                      cc_template_info:
                        template_id: ''
                        desc: ''
                        author_name: ''
                        clip_count: 0
                        duration_milliseconds: 0
                        related_music_id: ''
                      original_client_text:
                        markup_text: "Drove by a couple Bills fans in SF.    Rolled down my window and tried to cheer them up.   Because that’s what Patriots do!   <h id=\"723\">#billsmafia</h>\_"
                        text_extra:
                          '0':
                            user_id: ''
                            type: 1
                            hashtag_name: billsmafia
                            hashtag_id: '1891745'
                            is_commerce: false
                            sec_uid: ''
                            tag_id: '723'
                      music_selected_from: original
                      tts_voice_ids: null
                      reference_tts_voice_ids: null
                      voice_filter_ids: null
                      reference_voice_filter_ids: null
                      music_title_style: 1
                      animated_image_info:
                        type: 0
                        effect: 0
                      comment_config:
                        emoji_recommend_list: null
                        preload:
                          preds: '{"item_post_comment":0.0018560343478163644}'
                        quick_comment:
                          enabled: false
                          rec_level: 0
                        zero_comment_button_config:
                          background_url:
                            url_list:
                              '0': >-
                                https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464
                            url_prefix: null
                          zero_comment_button_main_text: Start the conversation
                          zero_comment_button_text: Comment
                          zero_comment_button_enable: true
                          image_type: 1
                          background_url_for_black:
                            url_list:
                              '0': >-
                                https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693
                            url_prefix: null
                        long_press_recommend_list: null
                        quick_comment_emoji_recommend_list: null
                        comment_panel_show_tab_config:
                          max_tab_count: 3
                          comment_tab_info_config:
                            '0':
                              tab_id: 2
                              tab_name: like_list
                              priority: 100
                            '1':
                              tab_id: 3
                              tab_name: view_list
                              priority: 101
                            '2':
                              tab_id: 4
                              tab_name: story2viewer_list
                              priority: -100
                            '3':
                              tab_id: 5
                              tab_name: video_auth_page
                              priority: 102
                            '4':
                              tab_id: 11
                              tab_name: ec_reviews_tab
                              priority: 11
                        social_quick_comment:
                          enabled: false
                          rec_metrics:
                            non_social_enabled: 'false'
                            p_comment: '0'
                            p_skip: '0'
                            p_stay_time: '0'
                      is_on_this_day: 0
                      added_sound_music_info:
                        id: 7604286097106996000
                        id_str: '7604286097106995981'
                        title: original sound - stoolpresidente
                        author: Dave Portnoy
                        album: ''
                        cover_large:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=265e58b4&x-expires=1770649200&x-signature=zJ0gkSyOzRAPnkmh2NidVS2xkCc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=7cc102a5&x-expires=1770649200&x-signature=Q8lsnQjnRhnbZNcw4NAPtsqBulc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=c9338304&x-expires=1770649200&x-signature=o%2BeUsgz2wn2U6KHpBdRa1QtKCnA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        cover_medium:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=19d3e2f1&x-expires=1770649200&x-signature=Kll8fQQ68KpJGiH%2Bgr11%2FDxC7VQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=82b92eaf&x-expires=1770649200&x-signature=0ceU6EfJ7wt5ZFCQYEwp6acKdtU%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=bbc64fa9&x-expires=1770649200&x-signature=SITAwm%2B0jDBZk3%2FqhJnbkERsLdc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        cover_thumb:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=1b3ec87f&x-expires=1770649200&x-signature=ftr%2BmpUHl16Go1ZxcCHO00D5%2F%2BY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=aefa6c3b&x-expires=1770649200&x-signature=6Qx03TRX%2BI7sEUVbFDQiGjgWST0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=220913c2&x-expires=1770649200&x-signature=NxGD8OWykWae%2FpUTQaqO1BrU144%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        play_url:
                          uri: >-
                            https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7604286179302771470.mp3
                          url_list:
                            '0': >-
                              https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7604286179302771470.mp3
                          width: 720
                          height: 720
                          url_prefix: null
                        source_platform: 72
                        duration: 17
                        extra: >-
                          {"amplitude_peak":0,"beats":{},"can_read":true,"can_reuse":true,"erase_type":0,"erase_uid":0,"extract_item_id":7604286086189288718,"from_user_id":7576428750372668430,"full_song_beat_info":{},"full_song_beats":{},"has_edited":0,"is_batch_take_down_music":false,"is_ugc_mapping":false,"is_used":0,"loudness_lufs":0,"music_vid":"v12942gd0000d63tk0fog65hbinijhh0","owner_id":6659752019493208069,"resource_status":0,"review_unshelve_reason":0,"reviewed":0,"schedule_search_time":0}
                        user_count: 0
                        position: null
                        collect_stat: 0
                        status: 1
                        offline_desc: ''
                        owner_id: '6659752019493208069'
                        owner_nickname: Dave Portnoy
                        is_original: false
                        mid: '7604286097106995981'
                        binded_challenge_id: 0
                        author_deleted: false
                        owner_handle: stoolpresidente
                        author_position: null
                        prevent_download: false
                        external_song_info: {}
                        sec_uid: >-
                          MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD
                        avatar_thumb:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=1b3ec87f&x-expires=1770649200&x-signature=ftr%2BmpUHl16Go1ZxcCHO00D5%2F%2BY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=aefa6c3b&x-expires=1770649200&x-signature=6Qx03TRX%2BI7sEUVbFDQiGjgWST0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=220913c2&x-expires=1770649200&x-signature=NxGD8OWykWae%2FpUTQaqO1BrU144%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        avatar_medium:
                          uri: tos-maliva-avt-0068/7310178711609032710
                          url_list:
                            '0': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=19d3e2f1&x-expires=1770649200&x-signature=Kll8fQQ68KpJGiH%2Bgr11%2FDxC7VQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '1': >-
                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=82b92eaf&x-expires=1770649200&x-signature=0ceU6EfJ7wt5ZFCQYEwp6acKdtU%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                            '2': >-
                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=bbc64fa9&x-expires=1770649200&x-signature=SITAwm%2B0jDBZk3%2FqhJnbkERsLdc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        preview_start_time: 0
                        preview_end_time: 0
                        is_commerce_music: true
                        is_original_sound: true
                        audition_duration: 17
                        shoot_duration: 17
                        artists: {}
                        lyric_short_position: null
                        mute_share: false
                        tag_list: null
                        dmv_auto_show: false
                        is_author_artist: false
                        is_pgc: false
                        is_matched_metadata: false
                        is_audio_url_with_cookie: false
                        video_duration: 17
                        search_highlight: null
                        multi_bit_rate_play_info: null
                        duration_high_precision:
                          duration_precision: 17.34525
                          shoot_duration_precision: 17.34525
                          audition_duration_precision: 17.34525
                          video_duration_precision: 17.34525
                        can_not_reuse: false
                        is_play_music: false
                        commercial_right_type: 2
                        tt_to_dsp_song_infos: null
                        log_extra: >-
                          {"meta_song_matched_type":"not_found","ttm_matched_type":"","ttm_track_id":"","matched_meta_song_id":"","vid":"","owner_id":""}
                        is_shooting_allow: true
                        recommend_status: 100
                        has_commerce_right: true
                        meme_song_info: {}
                        uncert_artists: null
                        allow_offline_music_to_detail_page: false
                        create_time: 1770510850
                        can_be_stitched: true
                        music_group_use_count: 0
                        has_human_voice: true
                        music_ugid: 7604286097106996000
                        music_ugid_use_count: 0
                        has_commerce_right_strict: true
                        is_commerce_music_strict: true
                      origin_volume: '50.000000'
                      music_volume: '0.000000'
                      support_danmaku: false
                      has_danmaku: false
                      muf_comment_info_v2: null
                      behind_the_song_music_ids: null
                      behind_the_song_video_music_ids: null
                      ttec_suggest_words:
                        ttec_suggest_words: null
                      content_original_type: 1
                      shoot_tab_name: photo
                      content_type: video
                      content_size_type: 1
                      is_nff_or_nr: false
                      operator_boost_info: null
                      main_arch_common: ''
                      aigc_info:
                        aigc_label_type: 0
                        created_by_ai: false
                      banners:
                        '0':
                          key:
                            component_key: bottom_banner_search_rs
                      picked_users: {}
                      standard_component_info:
                        banner_enabled: true
                      is_title_translatable: false
                      title_language: un
                      upvote_info:
                        user_upvoted: false
                        friends_recall_info: '{}'
                        repost_initiate_score: 0
                      promote_capcut_toggle: 0
                      comment_topbar_info: null
                      content_model:
                        standard_biz:
                          tts_voice_info:
                            tts_voice_attr: '[]'
                            tts_voice_reuse_params: ''
                          vc_filter_info:
                            vc_filter_attr: '[]'
                          creator_analytics:
                            creator_analytics_entrance_status: 1
                          e_commerce:
                            ttec_content_tag:
                              recommendation_tag_consumer_str: ''
                              recommendation_tag_creator_str: ''
                          local_alliance_info:
                            alliance_item_label_type: 0
                            alliance_item_label_text: ''
                        custom_biz:
                          aweme_trace: 20260208150009737A741413DA3A7A9B70
                          high_quality_boost_info:
                            description: ''
                            link: ''
                            is_high_quality_post: false
                      creation_info:
                        creation_used_functions:
                          '0': select_music
                          '1': high_quality_upload
                      ttt_product_recall_type: -2
                      promote_icon_text: Promote
                      used_full_song: false
                      c2pa_info:
                        first_src: ''
                        last_src: ''
                        dedup_src: ''
                        first_aigc_src: ''
                        last_aigc_src: ''
                        dedup_err: ''
                        aigc_src: ''
                        is_tiktok: false
                        is_capcut: false
                        total_src: 0
                        total_err: 0
                        total_img: 0
                        total_vid: 0
                        upload_dur: 0
                        total_audio: 0
                        c2pa_extra_data: '{"aigc_percentage_type":0}'
                      content_level: 1
                      promote:
                        is_show_video_view: false
                        video_view_schema: ''
                        video_view_count: 0
                        promote_traffic_tag:
                          traffic_level: 0
                          need_track: false
                          version: 2025v1
                        extra: >-
                          {"is_self_post":false,"page_source":"publish","share_panel_icon_text_key":"","store_country_code":"US","traffic_level":0}
                      quick_reply_emojis:
                        '0': 😍
                        '1': 😂
                        '2': 😳
                      visual_search_info:
                        visual_search_intent_level: 0
                      social_interaction_blob:
                        auxiliary_model_content: ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA=
                      solaria_profile:
                        profile: >-
                          {"PACK_VOD:audio_effect_info_ios":"{\"5\":
                          4.500940694203454, \"1\": 4.502498258250051, \"0\":
                          4.500835688279984}","PACK_VOD:audio_loudness_info_ios":"{\"1\":
                          0.00015907891346615054, \"2\": 0.00047934971432809646,
                          \"-1\":
                          -0.00015169023764542404}","PACK_VOD:audio_meta":"{\"74ae78915d808e76104b38765219c117\":{\"Md5\":\"74ae78915d808e76104b38765219c117\",\"normal\":{\"base_metrics\":{\"tacm\":[0.91],\"drr\":18.4,\"rcd\":[0.2],\"mp\":-8.3,\"be\":[21.5,9485.4],\"ocf\":[-5.441,-2.6292,-9.7035,-13.9439,-17.9293,-24.3211,-29.7619,-37.8534,-45.9967,-58.1758],\"il\":-24.5}}},\"ee01969e2ce192eac8b1c7c4cf4f2392\":{\"Md5\":\"ee01969e2ce192eac8b1c7c4cf4f2392\",\"normal\":{\"base_metrics\":{\"tacm\":[0.91],\"drr\":18.4,\"rcd\":[0.2],\"mp\":-8.15,\"be\":[16.1,9426.2],\"ocf\":[-5.4063,-2.6521,-9.7202,-13.8742,-17.8687,-24.257,-29.565,-37.588,-45.9249,-58.1203],\"il\":-24.5}}},\"src\":{\"src\":{\"base_metrics\":{\"tacm\":[0.91],\"drr\":18.1,\"rcd\":[0.2],\"mp\":-8.02,\"be\":[16.1,9899.9],\"ocf\":[-5.3736,-2.6496,-9.6318,-14.2823,-18.113,-24.3242,-29.8064,-37.6786,-45.9822,-57.4461],\"il\":-24.4},\"ts\":[\"tag_03010309\",\"tag_03010308\",\"tag_03010307\",\"tag_02040437\",\"tag_00010204\"],\"trs\":[0.91,0.15,0.1,0.1,0.08]}}}","PACK_VOD:vod_diversity_tier3":"10014","PACK_VOD:vod_sr_class_v30_score":"52.37","play_time_prob_dist":"[800,0.7959,3176.9133]"}
                      meme_reg_info: {}
                      smart_search_info:
                        find_similar_intent_type: 0
                        ask_tako_intent_type: 0
                        related_videos_intent_type: 0
                        title_smart_search_panel_type: 0
                        ai_overview_intent_type: 0
                      survey_info: null
                      tns_ue_feed_info:
                        footnote:
                          can_add_footnote: 0
                          pending_count: 0
                      ecosystem_perception_enhancement: null
                      creator_ai_comment:
                        has_ai_topic: false
                        eligible_video: false
                        not_eligible_reason: 213
                      tako_bubble_info:
                        tako_bubble_enable: false
                      bottom_products: null
                      right_products: null
                      is_ad: false
                      is_eligible_for_commission: false
                      is_paid_partnership: false
                      create_time_utc: '2026-02-08T00:34:07.000Z'
                      url: >-
                        https://www.tiktok.com/@stoolpresidente/video/7604286086189288718
                      shop_product_url: null
                credits_used: 1
                endpoint: tiktok/videos
        '400':
          description: Bad Request - Invalid parameters or missing required fields
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: 'Missing required parameter: handle'
                  endpoint:
                    type: string
                  credits_required:
                    type: integer
                required:
                  - error
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Invalid API key
                  docs:
                    type: string
                    example: https://docs.sociavault.com/authentication
                required:
                  - error
        '402':
          description: Payment Required - Insufficient credits
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Insufficient credits
                  required:
                    type: integer
                    example: 1
                    description: Credits required for this request
                  available:
                    type: integer
                    example: 0
                    description: Credits currently available
                required:
                  - error
                  - required
                  - available
        '500':
          description: Internal Server Error - Service configuration or processing error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Service configuration error
                required:
                  - error
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |-
        API key for authentication. Format: `sk_live_xxxxxxxxxxxxx`

        Get your API key from the [Dashboard](https://sociavault.com/dashboard).

````