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

# List remix presets

> Browse curated voice changes and their sample recordings. Use a preset ID when preparing or generating a remix. Browsing does not spend credits.

<section className="api-next-steps" aria-label="Continue building">
  ## Continue building

  <Columns cols={2}>
    <Card title="Voice Remix" icon="book-open" href="/guides/voice-remix">Choose, audition, and save a voice change.</Card>
    <Card title="Prepare remix preview" icon="braces" href="/api-reference/voice-previews/prepare-remix-preview">Prepare a preset or custom description.</Card>
  </Columns>
</section>


## OpenAPI

````yaml /openapi.json get /v1/voice-previews/remix/presets
openapi: 3.1.0
info:
  title: Breeze Developer API
  description: >-
    Breeze Developer API for models, voices, text-to-speech, history, balance,
    usage, and browser-managed API keys.
  version: 1.0.0
servers:
  - url: https://api.breeze.blue
security: []
tags:
  - name: Models
    description: Supported TTS models.
  - name: Text to Speech
    description: Text-to-speech synthesis and instruction enhancement.
  - name: Voices
    description: Saved voices and voice settings.
  - name: Voice Previews
    description: Create, audition, and save temporary voice previews.
  - name: Account
    description: Balance, usage, and API keys.
  - name: History
    description: Generated audio history.
paths:
  /v1/voice-previews/remix/presets:
    get:
      tags:
        - Voice Previews
      summary: List remix presets
      description: >-
        Browse curated voice changes and their sample recordings. Use a preset
        ID when preparing or generating a remix. Browsing does not spend
        credits.
      operationId: voice_previews_remix_presets
      responses:
        '200':
          description: Voice Remix preset catalog.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceRemixPresetsResponse'
          headers:
            x-breeze-api-key-id:
              description: >-
                Public API key identifier used to authenticate the request, when
                an API key was used.
              schema:
                type: string
        '401':
          description: HTTP 401 error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: |-
            curl \
              --request GET \
              --url "https://api.breeze.blue/v1/voice-previews/remix/presets" \
              --header "xi-api-key: $BREEZE_API_KEY"
        - lang: Python
          label: Python SDK
          source: |-
            import os

            from breeze_blue import BreezeBlue

            client = BreezeBlue(api_key=os.environ["BREEZE_API_KEY"])

            presets = client.voices.list_remix_presets()
            print(presets["presets"])
        - lang: TypeScript
          label: TypeScript SDK
          source: |-
            import { BreezeBlueClient } from "@breeze.blue/sdk";

            const client = new BreezeBlueClient({
              apiKey: process.env.BREEZE_API_KEY!,
            });

            const catalog = await client.voices.listRemixPresets();
            console.log(catalog.presets);
components:
  schemas:
    VoiceRemixPresetsResponse:
      properties:
        presets:
          items:
            $ref: '#/components/schemas/VoiceRemixPresetResponse'
          title: Presets
          type: array
        example_voice_id:
          title: Example Voice Id
          type: string
      required:
        - presets
        - example_voice_id
      title: VoiceRemixPresetsResponse
      type: object
    ErrorResponse:
      properties:
        ok:
          default: false
          title: Ok
          type: boolean
        code:
          title: Code
          type: string
        detail:
          title: Detail
          type: string
        error:
          title: Error
          type: string
        meta:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          default: null
          title: Meta
      required:
        - code
        - detail
        - error
      title: ErrorResponse
      type: object
    VoiceRemixPresetResponse:
      properties:
        id:
          title: Id
          type: string
        category:
          title: Category
          type: string
        name:
          title: Name
          type: string
        prompt:
          title: Prompt
          type: string
        script:
          title: Script
          type: string
        language:
          title: Language
          type: string
        guidance_scale:
          title: Guidance Scale
          type: number
        preview_audio_url:
          title: Preview Audio Url
          type: string
      required:
        - id
        - category
        - name
        - prompt
        - script
        - language
        - guidance_scale
        - preview_audio_url
      title: VoiceRemixPresetResponse
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: xi-api-key
      description: Breeze Developer API key.

````