> ## Documentation Index
> Fetch the complete documentation index at: https://scrapebadger-feat-flights-booking-options.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Music Detail

> Detail for a TikTok sound/music entity (title, author, usage counts).

<Note>
  Each request costs **5 credits**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/tiktok/music/{music_id}
openapi: 3.1.0
info:
  title: ScrapeBadger TikTok API
  version: 1.0.0
  description: >-
    TikTok scraping API for user profiles, videos, comments, transcripts,
    hashtags, music/sounds, search, trending, and the EU Commercial Content (ad
    transparency) library. Returns clean structured JSON; handles signing,
    anti-bot bypass, and regional proxy routing automatically.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/tiktok/music/{music_id}:
    get:
      tags:
        - TikTok Music
      summary: Get Music/Sound Detail
      description: Detail for a TikTok sound/music entity (title, author, usage counts).
      operationId: getTikTokMusic
      parameters:
        - name: music_id
          in: path
          required: true
          schema:
            type: string
          description: The numeric TikTok music/sound id.
        - name: region
          in: query
          schema:
            type: string
            default: US
          description: >-
            Content region (ISO 3166-1 alpha-2). Routes the request through a
            proxy and signer for that locale.
      responses:
        '200':
          description: Music detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MusicResponse'
              example:
                music:
                  id: '7011111111111111111'
                  title: original sound
                  author_name: charli d'amelio
                  album: null
                  duration: 15
                  play_url: https://sf16-sg.tiktokcdn.com/music.mp3
                  cover_thumb: https://p16-sign.tiktokcdn-us.com/music_cover.jpeg
                  original: true
                  is_copyrighted: false
                  video_count: 480000
                  user_count: 460000
                region: US
components:
  schemas:
    MusicResponse:
      type: object
      properties:
        music:
          $ref: '#/components/schemas/TikTokMusic'
        region:
          type: string
      required:
        - music
        - region
    TikTokMusic:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        author_name:
          type: string
        album:
          type: string
        duration:
          type: integer
          description: Seconds.
        play_url:
          type: string
        cover_thumb:
          type: string
        cover_medium:
          type: string
        cover_large:
          type: string
        original:
          type: boolean
        is_copyrighted:
          type: boolean
        mid:
          type: string
        owner_id:
          type: string
        owner_nickname:
          type: string
        is_commerce_music:
          type: boolean
        is_original_sound:
          type: boolean
        video_count:
          type: integer
          description: Videos using this sound (standalone music endpoints only).
        user_count:
          type: integer
          description: >-
            Distinct creators using this sound (standalone music endpoints
            only).
      description: Sound/music attached to a video, or a standalone music entity.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````