> ## 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.

# Search Music

> Search TikTok sounds and music by keyword. Returns 10 results per page — use the `offset` parameter with the `cursor` value from the previous response to load more.

<Note>
  💳 **1 credit** per request — returns 10 results. Use `offset` to paginate.
</Note>


## OpenAPI

````yaml GET /v1/scrape/tiktok/search/music
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/search/music:
    get:
      tags:
        - tiktok
      summary: Search Music
      description: >-
        Search TikTok sounds and music by keyword. Returns 10 results per page —
        use the `offset` parameter with the `cursor` value from the previous
        response to load more.
      operationId: tiktok_Search_Music
      parameters:
        - name: keyword
          in: query
          required: true
          schema:
            type: string
            example: nike
          description: Search query text
        - name: region
          in: query
          required: false
          schema:
            type: string
            example: GB
          description: 'Alpha-2 country code (default: US)'
        - name: filter_by
          in: query
          required: false
          schema:
            type: string
            enum:
              - '0'
              - '1'
              - '2'
          description: 'Filter type: 0 - All, 1 - Title, 2 - Creators'
        - name: sort_type
          in: query
          required: false
          schema:
            type: string
            enum:
              - '0'
              - '1'
              - '2'
              - '3'
              - '4'
          description: >-
            Sort type: 0 - Relevance, 1 - Most used, 2 - Most recent, 3 -
            Shortest, 4 - Longest
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            example: 0
          description: >-
            Pagination offset. If the response has `has_more: 1`, use the
            `cursor` value from the response as the offset for the next page.
      responses:
        '200':
          description: >-
            Successful response


            **Key Response Fields:**

            - `data.music[].id_str`: Unique music ID (use this instead of `id`
            to avoid precision issues)

            - `data.music[].title`: Song title

            - `data.music[].author`: Artist/creator name

            - `data.music[].album`: Album name

            - `data.music[].duration`: Clip duration in seconds (the usable
            TikTok clip)

            - `data.music[].play_url.url_list[0]`: Direct audio playback URL

            - `data.music[].cover_large.url_list[0]`: High-res cover art
            (720x720)

            - `data.music[].cover_medium.url_list[0]`: Medium cover art
            (100x100)

            - `data.music[].artists[]`: Artist details including `nick_name`,
            `handle`, `sec_uid`, and `avatar`

            - `data.music[].artists[].is_verified`: Whether the artist is
            verified

            - `data.music[].matched_song`: Original full song info including
            `full_duration` (in ms)

            - `data.music[].language`: Detected language of the track

            - `data.music[].theme_tags`: Tags like "Party", "Chill", etc.

            - `data.music[].has_human_voice`: Whether the track contains vocals

            - `data.music[].is_commerce_music`: Whether cleared for commercial
            use

            - `data.music[].is_original_sound`: Whether it's an original TikTok
            sound vs. licensed music

            - `data.music[].video_duration`: Max video duration allowed with
            this sound

            - `data.music[].search_music_name`: Display name shown in search
            results

            - `data.music[].search_music_desc`: Display description shown in
            search results

            - `data.music[].tt_to_dsp_song_infos[]`: Links to streaming
            platforms (Apple Music, Spotify, etc.)

            - `data.has_more`: 1 if more results available, 0 if not

            - `data.cursor`: Pass as `offset` parameter to get next page

            - `data.total`: Total number of matching results

            - `data.music_info_list[]`: Alternative format of results with
            `card_type` metadata
          content:
            application/json:
              example:
                success: true
                data:
                  status_code: 0
                  music:
                    - id: 7507643375882078000
                      id_str: '7507643375882078224'
                      title: Ssup
                      author: Photon
                      album: Ssup
                      cover_large:
                        uri: >-
                          tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                        url_list:
                          - >-
                            https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=544a444f&idc=useast8
                        width: 720
                        height: 720
                        url_prefix: null
                      cover_medium:
                        uri: >-
                          tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                        url_list:
                          - >-
                            https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_music.music_cover&dr=9584&idc=useast8&ps=933b5bde&shcp=544a444f&shp=08d74b56&t=4d5b0474
                        width: 720
                        height: 720
                        url_prefix: null
                      cover_thumb:
                        uri: >-
                          tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                        url_list:
                          - >-
                            https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_music.music_cover&dr=9584&idc=useast8&ps=933b5bde&shcp=544a444f&shp=08d74b56&t=4d5b0474
                        width: 720
                        height: 720
                        url_prefix: null
                      play_url:
                        uri: >-
                          https://sf16.tiktokcdn-us.com/obj/tos-alisg-ve-2774/okyzeYE0F1zaIwgKa6kehAAIDfFtFDOWRChQQM
                        url_list:
                          - >-
                            https://sf16.tiktokcdn-us.com/obj/tos-alisg-ve-2774/okyzeYE0F1zaIwgKa6kehAAIDfFtFDOWRChQQM
                        width: 720
                        height: 720
                        url_prefix: null
                      source_platform: 10033
                      duration: 60
                      extra: >-
                        {"amplitude_peak":0.92295444,"beats":{"audio_effect_onset":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/osIyezCQbZmsIFIxuYBDjAAaaSBfFfrAHIA6Er","beats_tracker":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/okemmWcogI0A1ACXsEzL2BRIILGAIeKufAeVjj","energy_trace":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/oYRaXBGIEBhPXWAW6AWidjyA8EAsQAia0zA64f","merged_beats":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/ooQmfFDZgsBBjFzRQDafIAGaAIQmCwfIAAprEH"},"can_read":true,"can_reuse":true,"erase_type":0,"erase_uid":0,"from_user_id":7577522657517028365,"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":-11.869965,"music_vid":"v10ad6g50000d0o897nog65upugl2mp0","owner_id":0,"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_nickname: ''
                      is_original: false
                      mid: '7507643375882078224'
                      binded_challenge_id: 0
                      author_deleted: false
                      owner_handle: ''
                      author_position: null
                      prevent_download: false
                      external_song_info: []
                      avatar_thumb:
                        uri: musically-maliva-obj/1594805258216454
                        url_list:
                          - >-
                            https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=a6bdd93b&x-expires=1771916400&x-signature=%2B3DHWhzglGY5eJErJPym8wBBevg%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                          - >-
                            https://p19-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=fa6ce2d8&x-expires=1771916400&x-signature=U64WXOwPXUMieWn2b8jnj55h0ME%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                          - >-
                            https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=92e8f975&x-expires=1771916400&x-signature=AqJTcGDZn%2F5nGA%2FKtTpuRIe5neI%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                        width: 720
                        height: 720
                        url_prefix: null
                      avatar_medium:
                        uri: musically-maliva-obj/1594805258216454
                        url_list:
                          - >-
                            https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=a3b5df94&x-expires=1771916400&x-signature=kUf3%2F1nQu7YRMLRy%2FTnCVkzb3yk%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                          - >-
                            https://p19-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=94417c55&x-expires=1771916400&x-signature=q4ry7T684G%2FKknNDcRr8ctYyI84%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                          - >-
                            https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=e4598181&x-expires=1771916400&x-signature=8BIt1ja3ptqTg8t5Nl6KV91jgJE%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                        width: 720
                        height: 720
                        url_prefix: null
                      preview_start_time: 0
                      preview_end_time: 0
                      is_commerce_music: false
                      is_original_sound: false
                      audition_duration: 60
                      shoot_duration: 60
                      artists:
                        - uid: '7045063745772651525'
                          sec_uid: >-
                            MS4wLjABAAAAD26ptvu1qm8b-pSVqCqCDLgjdlFiq28ci9xHb57Mk134QLo6DdjulVxpbeZ7VxnC
                          nick_name: Photon-Art.eu
                          handle: photon_art.eu
                          avatar:
                            uri: >-
                              tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98
                            url_list:
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=08fe9030&x-expires=1771916400&x-signature=dj%2Fsm1pxQLv9V449PJ9O4Rr5%2FkA%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                              - >-
                                https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=99e6f161&x-expires=1771916400&x-signature=dUkz%2B98wz4PZm0yWnktNciNrcsk%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                              - >-
                                https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=919bafcd&x-expires=1771916400&x-signature=1rYOjW%2FYuphRkJ2dc0a7CERRzdw%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                            url_prefix: null
                          is_verified: false
                          enter_type: 2
                          follow_status: 0
                          is_visible: false
                          follower_status: 0
                          is_private_account: false
                          is_block: false
                          is_blocked: false
                          status: 1
                      lyric_short_position: null
                      mute_share: false
                      tag_list: null
                      dmv_auto_show: false
                      is_author_artist: true
                      is_pgc: true
                      is_matched_metadata: false
                      is_audio_url_with_cookie: false
                      matched_song:
                        id: '7507636549153884177'
                        author: Photon
                        title: Ssup
                        h5_url: ''
                        cover_medium:
                          uri: >-
                            tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                          url_list:
                            - >-
                              https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=544a444f&idc=useast8
                            - >-
                              https://p19-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=544a444f&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        performers: null
                        chorus_info:
                          start_ms: 56064
                          duration_ms: 42432
                        full_duration: 118357
                      video_duration: 180
                      search_music_name: Ssup
                      search_music_desc: Photon
                      search_highlight: null
                      multi_bit_rate_play_info: null
                      duration_high_precision:
                        duration_precision: 60
                        shoot_duration_precision: 60
                        audition_duration_precision: 60
                        video_duration_precision: 180
                      can_not_reuse: false
                      is_play_music: false
                      commercial_right_type: 1
                      music_release_info:
                        is_new_release_song: false
                        group_release_date: 1747872000
                      tt_to_dsp_song_infos:
                        - platform: 1
                          song_id: '1816304787'
                          token:
                            apple_music_token:
                              developer_token: >-
                                eyJhbGciOiJFUzI1NiIsImtpZCI6Ikc2Q0dLMjdWQzMifQ.eyJleHAiOjE3NzI0Mzc3MjUsImlhdCI6MTc3MTgzMjkyNSwiaXNzIjoiTUo3OTdEOFU2RiJ9.3pd7Bl1UiL3UmELGImwVYUPQZmw7z_CGUAF57rwsxVwvCYj83i6tcHIvvD8b4uJZtmARFD-T539ywfqoeYC-wQ
                          button_type: 2
                        - platform: 3
                          song_id: 5R0YACIV514OiPrxm2Ciho
                          button_type: 2
                        - platform: 8
                          song_id: '3843439851'
                          button_type: 2
                      log_extra: >-
                        {"meta_song_matched_type":"pgc","ttm_matched_type":"","ttm_track_id":"","matched_meta_song_id":"","vid":"","owner_id":""}
                      is_shooting_allow: true
                      recommend_status: 100
                      vid_volume_info: '{"Peak":0.89125,"Loudness":-11.7}'
                      has_commerce_right: false
                      meme_song_info: {}
                      is_sami_recommend: false
                      uncert_artists: null
                      style_value:
                        - 152
                        - 199
                      theme_value:
                        - 48
                      language: Polish
                      allow_offline_music_to_detail_page: false
                      create_time: 1748010148
                      can_be_stitched: true
                      theme_tags:
                        - Party
                      music_group_use_count: 0
                      music_group_v3_ids:
                        - 7507647729145743000
                      has_human_voice: false
                      same_group_id_v3: 7507647729145743000
                      sim_group_id_v3: 7507647729145743000
                      music_ugid_use_count: 0
                      has_commerce_right_strict: false
                      is_commerce_music_strict: false
                  has_more: 1
                  cursor: 10
                  qc: ''
                  ad_info: {}
                  music_info_list:
                    - card_type: 1
                      music:
                        id: 7507643375882078000
                        id_str: '7507643375882078224'
                        title: Ssup
                        author: Photon
                        album: Ssup
                        cover_large:
                          uri: >-
                            tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                          url_list:
                            - >-
                              https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=544a444f&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        cover_medium:
                          uri: >-
                            tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                          url_list:
                            - >-
                              https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_music.music_cover&dr=9584&idc=useast8&ps=933b5bde&shcp=544a444f&shp=08d74b56&t=4d5b0474
                          width: 720
                          height: 720
                          url_prefix: null
                        cover_thumb:
                          uri: >-
                            tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                          url_list:
                            - >-
                              https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:100:100.jpeg?biz_tag=musically_music.music_cover&dr=9584&idc=useast8&ps=933b5bde&shcp=544a444f&shp=08d74b56&t=4d5b0474
                          width: 720
                          height: 720
                          url_prefix: null
                        play_url:
                          uri: >-
                            https://sf16.tiktokcdn-us.com/obj/tos-alisg-ve-2774/okyzeYE0F1zaIwgKa6kehAAIDfFtFDOWRChQQM
                          url_list:
                            - >-
                              https://sf16.tiktokcdn-us.com/obj/tos-alisg-ve-2774/okyzeYE0F1zaIwgKa6kehAAIDfFtFDOWRChQQM
                          width: 720
                          height: 720
                          url_prefix: null
                        source_platform: 10033
                        duration: 60
                        extra: >-
                          {"amplitude_peak":0.92295444,"beats":{"audio_effect_onset":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/osIyezCQbZmsIFIxuYBDjAAaaSBfFfrAHIA6Er","beats_tracker":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/okemmWcogI0A1ACXsEzL2BRIILGAIeKufAeVjj","energy_trace":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/oYRaXBGIEBhPXWAW6AWidjyA8EAsQAia0zA64f","merged_beats":"https://sf16.tiktokcdn-us.com/obj/tos-alisg-v-2774/ooQmfFDZgsBBjFzRQDafIAGaAIQmCwfIAAprEH"},"can_read":true,"can_reuse":true,"erase_type":0,"erase_uid":0,"from_user_id":7577522657517028365,"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":-11.869965,"music_vid":"v10ad6g50000d0o897nog65upugl2mp0","owner_id":0,"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_nickname: ''
                        is_original: false
                        mid: '7507643375882078224'
                        binded_challenge_id: 0
                        author_deleted: false
                        owner_handle: ''
                        author_position: null
                        prevent_download: false
                        external_song_info: []
                        avatar_thumb:
                          uri: musically-maliva-obj/1594805258216454
                          url_list:
                            - >-
                              https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=a6bdd93b&x-expires=1771916400&x-signature=%2B3DHWhzglGY5eJErJPym8wBBevg%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                            - >-
                              https://p19-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=fa6ce2d8&x-expires=1771916400&x-signature=U64WXOwPXUMieWn2b8jnj55h0ME%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                            - >-
                              https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=92e8f975&x-expires=1771916400&x-signature=AqJTcGDZn%2F5nGA%2FKtTpuRIe5neI%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        avatar_medium:
                          uri: musically-maliva-obj/1594805258216454
                          url_list:
                            - >-
                              https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=a3b5df94&x-expires=1771916400&x-signature=kUf3%2F1nQu7YRMLRy%2FTnCVkzb3yk%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                            - >-
                              https://p19-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=94417c55&x-expires=1771916400&x-signature=q4ry7T684G%2FKknNDcRr8ctYyI84%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                            - >-
                              https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=e4598181&x-expires=1771916400&x-signature=8BIt1ja3ptqTg8t5Nl6KV91jgJE%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                          width: 720
                          height: 720
                          url_prefix: null
                        preview_start_time: 0
                        preview_end_time: 0
                        is_commerce_music: false
                        is_original_sound: false
                        audition_duration: 60
                        shoot_duration: 60
                        artists:
                          - uid: '7045063745772651525'
                            sec_uid: >-
                              MS4wLjABAAAAD26ptvu1qm8b-pSVqCqCDLgjdlFiq28ci9xHb57Mk134QLo6DdjulVxpbeZ7VxnC
                            nick_name: Photon-Art.eu
                            handle: photon_art.eu
                            avatar:
                              uri: >-
                                tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98
                              url_list:
                                - >-
                                  https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=08fe9030&x-expires=1771916400&x-signature=dj%2Fsm1pxQLv9V449PJ9O4Rr5%2FkA%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                                - >-
                                  https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=99e6f161&x-expires=1771916400&x-signature=dUkz%2B98wz4PZm0yWnktNciNrcsk%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                                - >-
                                  https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/2fef0c54aaf29f401c9d4c11d2610c98~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=919bafcd&x-expires=1771916400&x-signature=1rYOjW%2FYuphRkJ2dc0a7CERRzdw%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=c1333099&idc=useast8
                              url_prefix: null
                            is_verified: false
                            enter_type: 2
                            follow_status: 0
                            is_visible: false
                            follower_status: 0
                            is_private_account: false
                            is_block: false
                            is_blocked: false
                            status: 1
                        lyric_short_position: null
                        mute_share: false
                        tag_list: null
                        dmv_auto_show: false
                        is_author_artist: true
                        is_pgc: true
                        is_matched_metadata: false
                        is_audio_url_with_cookie: false
                        matched_song:
                          id: '7507636549153884177'
                          author: Photon
                          title: Ssup
                          h5_url: ''
                          cover_medium:
                            uri: >-
                              tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF
                            url_list:
                              - >-
                                https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=544a444f&idc=useast8
                              - >-
                                https://p19-common.tiktokcdn-us.com/tos-alisg-v-2774/o0eTe5zIamGH99fI7ZLJ3QAODMABQAChrMAgBF~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=544a444f&idc=useast8
                            width: 720
                            height: 720
                            url_prefix: null
                          performers: null
                          chorus_info:
                            start_ms: 56064
                            duration_ms: 42432
                          full_duration: 118357
                        video_duration: 180
                        search_music_name: Ssup
                        search_music_desc: Photon
                        search_highlight: null
                        multi_bit_rate_play_info: null
                        duration_high_precision:
                          duration_precision: 60
                          shoot_duration_precision: 60
                          audition_duration_precision: 60
                          video_duration_precision: 180
                        can_not_reuse: false
                        is_play_music: false
                        commercial_right_type: 1
                        music_release_info:
                          is_new_release_song: false
                          group_release_date: 1747872000
                        tt_to_dsp_song_infos:
                          - platform: 1
                            song_id: '1816304787'
                            token:
                              apple_music_token:
                                developer_token: >-
                                  eyJhbGciOiJFUzI1NiIsImtpZCI6Ikc2Q0dLMjdWQzMifQ.eyJleHAiOjE3NzI0Mzc3MjUsImlhdCI6MTc3MTgzMjkyNSwiaXNzIjoiTUo3OTdEOFU2RiJ9.3pd7Bl1UiL3UmELGImwVYUPQZmw7z_CGUAF57rwsxVwvCYj83i6tcHIvvD8b4uJZtmARFD-T539ywfqoeYC-wQ
                            button_type: 2
                          - platform: 3
                            song_id: 5R0YACIV514OiPrxm2Ciho
                            button_type: 2
                          - platform: 8
                            song_id: '3843439851'
                            button_type: 2
                        log_extra: >-
                          {"meta_song_matched_type":"pgc","ttm_matched_type":"","ttm_track_id":"","matched_meta_song_id":"","vid":"","owner_id":""}
                        is_shooting_allow: true
                        recommend_status: 100
                        vid_volume_info: '{"Peak":0.89125,"Loudness":-11.7}'
                        has_commerce_right: false
                        meme_song_info: {}
                        is_sami_recommend: false
                        uncert_artists: null
                        style_value:
                          - 152
                          - 199
                        theme_value:
                          - 48
                        language: Polish
                        allow_offline_music_to_detail_page: false
                        create_time: 1748010148
                        can_be_stitched: true
                        theme_tags:
                          - Party
                        music_group_use_count: 0
                        music_group_v3_ids:
                          - 7507647729145743000
                        has_human_voice: false
                        same_group_id_v3: 7507647729145743000
                        sim_group_id_v3: 7507647729145743000
                        music_ugid_use_count: 0
                        has_commerce_right_strict: false
                        is_commerce_music_strict: false
                      musics: null
                      aweme_list: null
                  extra:
                    now: 1771833578000
                    logid: 2026022307593885D352C8B296DF81B37A
                    fatal_item_ids: []
                    search_request_id: ''
                    server_stream_time: 521
                    api_debug_info: null
                  log_pb:
                    impr_id: 2026022307593885D352C8B296DF81B37A
                  global_doodle_config:
                    keyword: Photon Ssup
                    display_filter_bar: 1
                    new_source: normal_search
                    search_channel: musically_music
                    tns_search_result: Pass
                    hide_results: false
                    enable_music_mix_rank: 1
                    feedback_survey:
                      - feedback_type: music
                        multiple_choices:
                          - key: Dislike
                            value: Dislike
                          - key: Unrelated result
                            value: Unrelated result
                          - key: No original version
                            value: No original version
                          - key: 'Only short clips available '
                            value: 'Only short clips available '
                          - key: Alternative sound
                            value: Alternative sound
                          - key: Inappropriate content
                            value: Inappropriate content
                          - key: Others
                            value: Others
                        long_stress_info: null
                        send_us_multiple_choices: null
                    hit_shark: true
                    hit_dolphin: false
                  feedback_type: music
                  total: 290
                credits_used: 1
                endpoint: tiktok/search_music
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Search keyword is required
        '402':
          description: Insufficient credits
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Insufficient credits
                  required:
                    type: integer
                    example: 1
                  available:
                    type: integer
                    example: 0
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).

````