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

# Get Song Details

> Get detailed metadata for a specific TikTok song.

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


## OpenAPI

````yaml GET /v1/scrape/tiktok/music/details
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/music/details:
    get:
      tags:
        - tiktok
      summary: Get Song Details
      description: Get detailed metadata for a specific TikTok song.
      operationId: tiktok_Get_Song_Details
      parameters:
        - name: clipId
          in: query
          description: >-
            This is a little confusing because this isn't songId like you'd
            think. It is the clipId. I guess because you can clip different
            portions of a song 🤷‍♂️
          required: true
          schema:
            type: string
            example: '7439295283975702544'
      responses:
        '200':
          description: >-
            Successful response


            **Key Response Fields:**

            - `music_info.id_str`: Unique music/clip ID

            - `music_info.title`: Song title

            - `music_info.author`: Artist name(s)

            - `music_info.album`: Album name

            - `music_info.duration`: Clip duration in seconds

            - `music_info.user_count`: Number of TikTok videos using this sound

            - `music_info.create_time`: When the sound was added (Unix
            timestamp)

            - `music_info.is_original`: Whether it's an original sound

            - `music_info.is_commerce_music`: Whether it's cleared for
            commercial use

            - `music_info.artists[].nick_name`: Artist display name

            - `music_info.artists[].sec_uid`: Artist secure user ID

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

            - `music_info.cover_large.url_list[0]`: Large album cover image URL

            - `music_info.play_url.url_list[0]`: Audio stream URL

            - `music_info.multi_bit_rate_play_info[].gear_name`: Quality tier
            (`medium`, `higher`, `highest`)

            - `music_info.multi_bit_rate_play_info[].bit_rate`: Audio bitrate

            - `music_info.multi_bit_rate_play_info[].play_addr.url_list[0]`:
            Audio URL for that quality

            - `music_info.matched_song.title`: Full song title from music
            catalog

            - `music_info.matched_song.full_duration`: Full song duration in ms

            - `music_info.share_info.share_url`: Shareable TikTok music link

            - `music_info.theme_tags[]`: Genre/mood tags (e.g., `Love`)
          content:
            application/json:
              example:
                success: true
                data:
                  success: true
                  music_info:
                    album: GNX
                    allow_offline_music_to_detail_page: false
                    artists:
                      '0':
                        avatar:
                          uri: tos-maliva-avt-0068/42b31651a14a0f2151814dcbace36525
                          url_list:
                            '0': >-
                              https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/42b31651a14a0f2151814dcbace36525~tplv-tiktokx-cropcenter:168:168.webp?dr=10397&refresh_token=ad859501&x-expires=1770667200&x-signature=U9FfoFZqfvjPBWknLznhgl%2BGM9g%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                            '1': >-
                              https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/42b31651a14a0f2151814dcbace36525~tplv-tiktokx-cropcenter:168:168.webp?dr=10397&refresh_token=07bd53d6&x-expires=1770667200&x-signature=GXcrDtUsOcu3Fm2Kjc5xAfJAuwY%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                            '2': >-
                              https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/42b31651a14a0f2151814dcbace36525~tplv-tiktokx-cropcenter:168:168.jpeg?dr=10397&refresh_token=fd72f9b7&x-expires=1770667200&x-signature=CfwWpSnb1OllRL2BoBblc2ffhAQ%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                          url_prefix: null
                        enter_type: 2
                        follow_status: 0
                        follower_status: 0
                        handle: sza
                        is_block: false
                        is_blocked: false
                        is_private_account: false
                        is_verified: true
                        is_visible: false
                        nick_name: SZA
                        sec_uid: >-
                          MS4wLjABAAAAvpZK1VKUmXciE56qu5sbLqcbmzfEMwPaisV4CKQXH7JzitoUooisLwlAWcZ5oW2W
                        status: 1
                        uid: '7486547994222740523'
                    audition_duration: 59
                    author: Kendrick Lamar & SZA
                    author_deleted: false
                    author_position: null
                    avatar_medium:
                      height: 720
                      uri: musically-maliva-obj/1594805258216454
                      url_list:
                        '0': >-
                          https://p16-common-sign.tiktokcdn-eu.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.webp?dr=10399&refresh_token=77f5ab1b&x-expires=1770667200&x-signature=l61EvH9B31zR%2FFmwZ4xwqBXTCY0%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                        '1': >-
                          https://p19-common-sign.tiktokcdn-eu.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.webp?dr=10399&refresh_token=0db056a6&x-expires=1770667200&x-signature=eXxhEtlJ4B5Eoxjo3RyIgsxygSY%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                        '2': >-
                          https://p16-common-sign.tiktokcdn-eu.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:720:720.jpeg?dr=10399&refresh_token=a1e9a2df&x-expires=1770667200&x-signature=ssGCOgtd4I%2FIeIby%2B7MQrGK5JbM%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                      url_prefix: null
                      width: 720
                    avatar_thumb:
                      height: 720
                      uri: musically-maliva-obj/1594805258216454
                      url_list:
                        '0': >-
                          https://p16-common-sign.tiktokcdn-eu.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.webp?dr=10399&refresh_token=2a42a584&x-expires=1770667200&x-signature=Ve71WW0fVrgKKbyZn8pyd3bcBjw%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                        '1': >-
                          https://p19-common-sign.tiktokcdn-eu.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.webp?dr=10399&refresh_token=f6956fa9&x-expires=1770667200&x-signature=MR4ozn%2FJ4vWj0%2F9AZEECegAa0%2Fo%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                        '2': >-
                          https://p16-common-sign.tiktokcdn-eu.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.jpeg?dr=10399&refresh_token=657177ec&x-expires=1770667200&x-signature=zCCqWVKSa4F17ZTBU89WQtsOCxs%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a
                      url_prefix: null
                      width: 720
                    binded_challenge_id: 0
                    can_be_stitched: false
                    can_not_reuse: false
                    collect_stat: 0
                    commercial_right_type: 3
                    cover_large:
                      height: 720
                      uri: tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA
                      url_list:
                        '0': >-
                          https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA.jpeg
                      url_prefix: null
                      width: 720
                    cover_medium:
                      height: 720
                      uri: tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA
                      url_list:
                        '0': >-
                          https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA.jpeg
                      url_prefix: null
                      width: 720
                    cover_thumb:
                      height: 720
                      uri: tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA
                      url_list:
                        '0': >-
                          https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA.jpeg
                      url_prefix: null
                      width: 720
                    create_time: 1732317312
                    dmv_auto_show: false
                    duration: 59
                    duration_high_precision:
                      audition_duration_precision: 59.037
                      duration_precision: 59.037
                      shoot_duration_precision: 59.037
                      video_duration_precision: 60
                    external_song_info: {}
                    extra: >-
                      {"amplitude_peak":1.1775435,"apple_song_id":1781316886,"beats":{"audio_effect_onset":"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oc3znOgNABAyAsloQEiaoshBsf9juFtiAWABFE","beats_tracker":"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/o4E7lsAzwoFsgihIzEBBFQAWmigfBsDA3EAvit","energy_trace":"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUstzgE1gABiQsBsElBWATjF4miFsoLiPAmhfA","merged_beats":"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oAQAGitIzgAmsKs7BBABBDOoiAgEhEfsFWj9FF"},"can_read":true,"can_reuse":true,"erase_type":0,"erase_uid":0,"from_user_id":7568972008450065430,"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":-9.691562,"music_vid":"v10ad6g50000ct0gvh7og65tagjqkldg","owner_id":0,"resource_status":0,"review_unshelve_reason":0,"reviewed":1,"schedule_search_time":0}
                    has_commerce_right: false
                    has_commerce_right_strict: false
                    id: 7439295283975703000
                    id_str: '7439295283975702544'
                    is_audio_url_with_cookie: false
                    is_author_artist: true
                    is_commerce_music: true
                    is_commerce_music_strict: true
                    is_matched_metadata: false
                    is_original: false
                    is_original_sound: false
                    is_pgc: true
                    is_shooting_allow: true
                    log_extra: >-
                      {"meta_song_matched_type":"pgc","ttm_matched_type":"","ttm_track_id":"","matched_meta_song_id":"","vid":"","owner_id":""}
                    lyric_short_position: null
                    matched_song:
                      author: Kendrick Lamar & SZA
                      chorus_info:
                        duration_ms: 27456
                        start_ms: 119808
                      cover_medium:
                        height: 720
                        uri: >-
                          tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA
                        url_list:
                          '0': >-
                            https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oAQAfe3r0KfAKAMDJpQVILIMTeGSVPAmreQznA.jpeg
                        url_prefix: null
                        width: 720
                      full_duration: 177599
                      h5_url: ''
                      id: '7440101671265486864'
                      performers: null
                      title: luther
                    meme_song_info: {}
                    mid: '7439295283975702544'
                    multi_bit_rate_play_info:
                      '0':
                        bit_rate: 65667
                        dub_infos: null
                        gear_name: medium
                        play_addr:
                          url_list:
                            '0': >-
                              https://v15m.tiktokcdn-eu.com/ee3639978d42dbfbe4277c4e8e25201a/698a4396/video/tos/alisg/tos-alisg-ve-2774/o0UJg2FdGAfwfimskIv4edVKCJAGBL1eDApH61/?a=1233&bti=OnYpenFxQGo4NDZAOm1rbGhyYCMvNTNg&ch=0&cr=0&dr=0&er=0&cd=0%7C0%7C0%7C0&br=128&bt=64&ft=.NpOcInz7Thy9KPPXq8Zmo&mime_type=audio_mp4&qs=3&rc=M2VlNjU4NWc5NGdmaGQzZ0Bpam90anc5cmtqdzMzODlkNEAzMC4wNV8zXy4xNDRhNGJfYSNhaGdeMmQ0cy1gLS1kYS1zcw%3D%3D&vvpl=1&l=20260208202613669FCED6CCEB9BA491D1&btag=e00090000
                            '1': >-
                              https://v77.tiktokcdn-eu.com/81f5f7360d657f6259bcc39978f68d3c/698a4396/video/tos/alisg/tos-alisg-ve-2774/o0UJg2FdGAfwfimskIv4edVKCJAGBL1eDApH61/?a=1233&bti=OnYpenFxQGo4NDZAOm1rbGhyYCMvNTNg&ch=0&cr=0&dr=0&er=0&cd=0%7C0%7C0%7C0&br=128&bt=64&ft=.NpOcInz7Thy9KPPXq8Zmo&mime_type=audio_mp4&qs=3&rc=M2VlNjU4NWc5NGdmaGQzZ0Bpam90anc5cmtqdzMzODlkNEAzMC4wNV8zXy4xNDRhNGJfYSNhaGdeMmQ0cy1gLS1kYS1zcw%3D%3D&vvpl=1&l=20260208202613669FCED6CCEB9BA491D1&btag=e00090000
                          url_prefix: null
                        quality_type: 3
                      '1':
                        bit_rate: 129675
                        dub_infos: null
                        gear_name: higher
                        play_addr:
                          url_list:
                            '0': >-
                              https://v15m.tiktokcdn-eu.com/174a45729f9b0fccf98e3f2fc1d0c55e/698a4396/video/tos/alisg/tos-alisg-ve-2774/o8f9CfEFDdCEDUAq6gDqgOY4gQNfJHzxhF2ayE/?a=1233&bti=OnYpenFxQGo4NDZAOm1rbGhyYCMvNTNg&ch=0&cr=0&dr=0&er=0&cd=0%7C0%7C0%7C0&br=252&bt=126&ft=.NpOcInz7Thy9KPPXq8Zmo&mime_type=audio_mp4&qs=6&rc=aTs5ZThpOGY1ODhmZTppNUBpam90anc5cmtqdzMzODlkNEAzY2JgYmAwXjMxXy4uXmEwYSNhaGdeMmQ0cy1gLS1kYS1zcw%3D%3D&vvpl=1&l=20260208202613669FCED6CCEB9BA491D1&btag=e00090000
                            '1': >-
                              https://v77.tiktokcdn-eu.com/4ccb58478f667a472a0319b32d450a14/698a4396/video/tos/alisg/tos-alisg-ve-2774/o8f9CfEFDdCEDUAq6gDqgOY4gQNfJHzxhF2ayE/?a=1233&bti=OnYpenFxQGo4NDZAOm1rbGhyYCMvNTNg&ch=0&cr=0&dr=0&er=0&cd=0%7C0%7C0%7C0&br=252&bt=126&ft=.NpOcInz7Thy9KPPXq8Zmo&mime_type=audio_mp4&qs=6&rc=aTs5ZThpOGY1ODhmZTppNUBpam90anc5cmtqdzMzODlkNEAzY2JgYmAwXjMxXy4uXmEwYSNhaGdeMmQ0cy1gLS1kYS1zcw%3D%3D&vvpl=1&l=20260208202613669FCED6CCEB9BA491D1&btag=e00090000
                          url_prefix: null
                        quality_type: 6
                      '2':
                        bit_rate: 257733
                        dub_infos: null
                        gear_name: highest
                        play_addr:
                          url_list:
                            '0': >-
                              https://v15m.tiktokcdn-eu.com/238a631bfee5b92ebe94b4d9e97249cc/698a4396/video/tos/alisg/tos-alisg-ve-2774/owFf8B9OgF5qDVEQE6EhFzDCggBfMYe0aqbAID/?a=1233&bti=OnYpenFxQGo4NDZAOm1rbGhyYCMvNTNg&ch=0&cr=0&dr=0&er=0&cd=0%7C0%7C0%7C0&br=502&bt=251&ft=.NpOcInz7Thy9KPPXq8Zmo&mime_type=audio_mp4&qs=7&rc=Ozc4MzVkMztlPDk3OWU3PEBpam90anc5cmtqdzMzODlkNEBeXmEuYC8vNjMxMy4xNi4wYSNhaGdeMmQ0cy1gLS1kYS1zcw%3D%3D&vvpl=1&l=20260208202613669FCED6CCEB9BA491D1&btag=e00090000
                            '1': >-
                              https://v77.tiktokcdn-eu.com/986b3be01fc4ee58a88eda67ef31e89a/698a4396/video/tos/alisg/tos-alisg-ve-2774/owFf8B9OgF5qDVEQE6EhFzDCggBfMYe0aqbAID/?a=1233&bti=OnYpenFxQGo4NDZAOm1rbGhyYCMvNTNg&ch=0&cr=0&dr=0&er=0&cd=0%7C0%7C0%7C0&br=502&bt=251&ft=.NpOcInz7Thy9KPPXq8Zmo&mime_type=audio_mp4&qs=7&rc=Ozc4MzVkMztlPDk3OWU3PEBpam90anc5cmtqdzMzODlkNEBeXmEuYC8vNjMxMy4xNi4wYSNhaGdeMmQ0cy1gLS1kYS1zcw%3D%3D&vvpl=1&l=20260208202613669FCED6CCEB9BA491D1&btag=e00090000
                          url_prefix: null
                        quality_type: 7
                    music_release_info:
                      group_release_date: 1732233600
                      is_new_release_song: false
                    mute_share: false
                    offline_desc: ''
                    owner_handle: ''
                    owner_nickname: ''
                    play_url:
                      height: 720
                      uri: >-
                        https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/o8f9CfEFDdCEDUAq6gDqgOY4gQNfJHzxhF2ayE
                      url_list:
                        '0': >-
                          https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/o8f9CfEFDdCEDUAq6gDqgOY4gQNfJHzxhF2ayE
                      url_prefix: null
                      width: 720
                    position: null
                    prevent_download: false
                    preview_end_time: 0
                    preview_start_time: 9.983
                    recommend_status: 100
                    same_group_id_v3: 7440102566597233000
                    share_info:
                      bool_persist: 0
                      now_invitation_card_image_urls: null
                      share_desc: 'Check out this song! luther #TikTok'
                      share_desc_info: >-
                        Users all over the world are having fun making their own
                        versions of the song luther on TikTok! Tap here >>
                      share_quote: ''
                      share_signature_desc: ''
                      share_signature_url: ''
                      share_title: >-
                        Amazing! I just found a bunch of funny videos! #TikTok >
                        luther
                      share_title_myself: ''
                      share_title_other: ''
                      share_url: >-
                        https://www.tiktok.com/music/luther-7439295283975702544?_r=1&sharer_language=en&source=h5_m&u_code=f08j9a14mf947h&_d=f09550ii182i1g&share_music_id=7439295283975702544
                    shoot_duration: 59
                    sim_group_id_v3: 43748353282
                    source_platform: 10033
                    status: 1
                    strong_beat_url:
                      height: 720
                      uri: >-
                        https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oMDEctHCABm5chILlciDQzEisB0lAAkfWAAzAc
                      url_list:
                        '0': >-
                          https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oMDEctHCABm5chILlciDQzEisB0lAAkfWAAzAc
                      url_prefix: null
                      width: 720
                    suggest_words:
                      suggest_words:
                        '0':
                          scene: search_hint
                          words:
                            '0':
                              word: luther
                              word_id: '2631891321157554408'
                    tag_list: null
                    theme_tags:
                      '0': Love
                    title: luther
                    tt_to_dsp_song_infos:
                      '0':
                        button_type: 2
                        platform: 1
                        song_id: '1781270323'
                        token:
                          apple_music_token:
                            developer_token: >-
                              eyJhbGciOiJFUzI1NiIsImtpZCI6Ikc2Q0dLMjdWQzMifQ.eyJleHAiOjE3NzExMzEyNjYsImlhdCI6MTc3MDUyNjQ2NiwiaXNzIjoiTUo3OTdEOFU2RiJ9.o1i1zChbl1kjw8rctEKqru00AUZyEHL-2SaFrcnKiXPdeJQKav8mZ5q0_jc-1uDNcWoKdtOv_eNZrHdzT0bN5Q
                      '1':
                        button_type: 2
                        platform: 2
                        song_id: B0DNTN5QMK
                      '2':
                        button_type: 2
                        platform: 3
                        song_id: 2CGNAOSuO1MEFCbBRgUzjd
                    uncert_artists:
                      '0':
                        name: Kendrick Lamar
                    user_count: 1432991
                    vid_volume_info: >-
                      {"LoudnessRangeEnd":-8.7,"LoudnessRange":3.8,"Peak":0.96605,"Loudness":-9.6,"MaximumShortTermLoudness":-8.3,"Metrics":{"Version":"1.4.2","Loudness":{"Integrated":-9.605},"Phase":{"RMSDownmixDiff":-0.081},"RMSStats":{"Peak":-0.343,"LTotal":-10.602,"RTotal":-10.754,"LRDiff":0.152}},"MaximumMomentaryLoudness":-6.6,"LoudnessRangeStart":-12.5,"Version":2}
                    video_duration: 60
                credits_used: 1
                endpoint: tiktok/music/details
        '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).

````