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

# List Analyze Presets

> Lists all available music analysis presets. Each preset is a curated prompt with optimized generation parameters for a specific use case (e.g. catalog metadata enrichment, sync licensing analysis, audience profiling). Requires authentication via API key or Bearer token.



## OpenAPI

````yaml api-reference/openapi/releases.json GET /api/songs/analyze/presets
openapi: 3.1.0
info:
  title: Recoup API - Releases
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/songs/analyze/presets:
    get:
      description: >-
        Lists all available music analysis presets. Each preset is a curated
        prompt with optimized generation parameters for a specific use case
        (e.g. catalog metadata enrichment, sync licensing analysis, audience
        profiling). Requires authentication via API key or Bearer token.
      responses:
        '200':
          description: Presets listed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  presets:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: Preset identifier to pass in the analyze request
                        label:
                          type: string
                          description: Human-readable preset name
                        description:
                          type: string
                          description: What this preset does
                        requiresAudio:
                          type: boolean
                          description: Whether this preset needs an audio_url
                        responseFormat:
                          type: string
                          enum:
                            - json
                            - text
                          description: Expected response format
        '401':
          description: Unauthorized — invalid or missing API key / Bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SongAnalyzeErrorResponse'
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  schemas:
    SongAnalyzeErrorResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - error
          description: Error status
        missing_fields:
          type: array
          description: Path to the first invalid or missing field when validation fails
          items:
            type: string
        error:
          type: string
          description: Error message describing what went wrong
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Recoup API key. [Learn more](/quickstart#api-keys).
    bearerAuth:
      type: http
      scheme: bearer

````