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

# List music

> List background music.

MCP tool: `podcast_list_music`. OAuth scope: `asset.read`.


## OpenAPI

````yaml api-reference/openapi.json GET /open/podcast/v1/music
openapi: 3.0.3
info:
  description: >-
    Atomic Podcast capabilities. Credits, tasks and assets are shared with the
    Web account and Space.
  title: Podcastor API
  version: 1.0.0
servers:
  - url: https://api-services.podcastor.ai
    description: Podcastor API
security: []
paths:
  /open/podcast/v1/music:
    get:
      tags:
        - Podcast
      summary: list music
      description: List background music.
      operationId: podcast_list_music
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/echo.JSON'
                  - properties:
                      data:
                        $ref: '#/components/schemas/vo.PrjBackgroundMusicListResp'
                    type: object
          description: OK
      security:
        - ApiKey: []
components:
  schemas:
    echo.JSON:
      properties:
        cause:
          type: string
        code:
          type: integer
        data: {}
        details: {}
        msg:
          type: string
        rid:
          type: string
      type: object
    vo.PrjBackgroundMusicListResp:
      properties:
        background_music:
          description: List of background music tracks
          items:
            $ref: '#/components/schemas/vo.PrjBackgroundMusicListData'
          type: array
      type: object
    vo.PrjBackgroundMusicListData:
      properties:
        duration:
          description: |-
            Music duration in seconds
            @example 120
          type: integer
        id:
          description: |-
            Music track ID
            @example 1001
          type: integer
        music_url:
          description: |-
            Music track URL
            @example "https://example.com/music/upbeat_corporate.mp3"
          type: string
        name:
          description: |-
            Music track name
            @example "Upbeat Corporate"
          type: string
      type: object
  securitySchemes:
    ApiKey:
      in: header
      name: X-Api-Key
      type: apiKey

````