Arpeggi Labs Voice Conversion API

Convert an input performance to a target voice model.

Operations 3

POST /voice-conversions Create a new voice conversion job #
GET /voice-conversions Fetch voice conversions #
GET /voice-conversions/{id} Fetch a voice conversion by ID #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/arpeggi-labs-voice-conversion-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

arpeggi-labs-voice-conversion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Kits AI Stem Splitter Voice Conversion API
  version: v1
  description: 'The Kits AI API (operated by Arpeggi Labs) provides studio-quality AI music and audio tools as asynchronous inference jobs: voice conversion, vocal separation, stem splitting, and voice-model blending, plus a catalog of royalty-free artist voice models. All create endpoints enqueue a job and return its status; poll the corresponding fetch endpoint for the signed output file URLs. This specification was generated by API Evangelist from the published Kits AI documentation (https://docs.kits.ai/); the provider lists an openapi.json in its llms.txt but the file was not retrievable at generation time.'
  contact:
    name: Kits AI Support
    url: https://help.kits.ai/
  x-generated-by: api-evangelist-enrichment
  x-source: https://docs.kits.ai/api-reference
servers:
- url: https://arpeggi.io/api/kits/v1
  description: Production
security:
- bearerAuth: []
tags:
- name: Voice Conversion
  description: Convert an input performance to a target voice model.
paths:
  /voice-conversions:
    post:
      tags:
      - Voice Conversion
      operationId: createVoiceConversion
      summary: Create a new voice conversion job
      description: Creates a voice conversion inference job and adds it to the inference queue. All requests must be made as multipart form requests. The response contains the job status.
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - voiceModelId
              - soundFile
              properties:
                voiceModelId:
                  type: integer
                  description: ID of the voice model.
                soundFile:
                  type: string
                  format: binary
                  description: Input audio. Supports wav, mp3, or flac. Max 100MB.
                conversionStrength:
                  type: number
                  minimum: 0
                  maximum: 1
                  description: Amount of accent from the voice model (0 to 1).
                modelVolumeMix:
                  type: number
                  minimum: 0
                  maximum: 1
                  description: Mix between input volume and model volume (0 to 1).
                pitchShift:
                  type: number
                  minimum: -24
                  maximum: 24
                  description: Semitones to shift the input audio (-24 to 24).
                pre:
                  $ref: '#/components/schemas/PreProcessingEffects'
                post:
                  $ref: '#/components/schemas/PostProcessingEffects'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InferenceJob'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
        '429':
          $ref: '#/components/responses/TooManyRequests'
    get:
      tags:
      - Voice Conversion
      operationId: listVoiceConversions
      summary: Fetch voice conversions
      description: Returns a paginated list of voice conversion inference jobs.
      parameters:
      - $ref: '#/components/parameters/Order'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PerPage'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedInferenceJobs'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
  /voice-conversions/{id}:
    get:
      tags:
      - Voice Conversion
      operationId: getVoiceConversion
      summary: Fetch a voice conversion by ID
      description: Returns a single voice conversion inference job by id.
      parameters:
      - $ref: '#/components/parameters/JobId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InferenceJob'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  schemas:
    PaginatedInferenceJobs:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/InferenceJob'
        meta:
          $ref: '#/components/schemas/PaginationMeta'
    VoiceModel:
      type: object
      description: A voice model that may be user created or internal to Kits.ai.
      properties:
        id:
          type: integer
        title:
          type: string
        isUsable:
          type: boolean
        tags:
          type:
          - array
          - 'null'
          items:
            type: string
        imageUrl:
          type:
          - string
          - 'null'
        demoUrl:
          type:
          - string
          - 'null'
        twitterLink:
          type:
          - string
          - 'null'
        instagramLink:
          type:
          - string
          - 'null'
        tiktokLink:
          type:
          - string
          - 'null'
        spotifyLink:
          type:
          - string
          - 'null'
        youtubeLink:
          type:
          - string
          - 'null'
    InferenceJob:
      type: object
      description: An inference job created through the API.
      properties:
        id:
          type: integer
        createdAt:
          type: string
        type:
          type: string
          enum:
          - infer
          - tts
        status:
          type: string
          enum:
          - running
          - success
          - error
          - cancelled
        jobStartTime:
          type:
          - string
          - 'null'
        jobEndTime:
          type:
          - string
          - 'null'
        outputFileUrl:
          type:
          - string
          - 'null'
          description: Signed URL for the output file (expires in 4 hours).
        lossyOutputFileUrl:
          type:
          - string
          - 'null'
        recombinedAudioFileUrl:
          type:
          - string
          - 'null'
        voiceModelId:
          type:
          - integer
          - 'null'
        model:
          allOf:
          - $ref: '#/components/schemas/VoiceModel'
    PaginationMeta:
      type: object
      properties:
        total:
          type: integer
        perPage:
          type: integer
        currentPage:
          type: integer
        lastPage:
          type: integer
        firstPage:
          type: integer
        firstPageUrl:
          type: string
        lastPageUrl:
          type: string
        nextPageUrl:
          type:
          - string
          - 'null'
        previousPageUrl:
          type:
          - string
          - 'null'
    PreProcessingEffects:
      type: object
      description: Effects run on the input file before conversion.
      properties:
        NoiseGate:
          type: object
          properties:
            threshold_db:
              type: number
            ratio:
              type: number
            attack_ms:
              type: number
            release_ms:
              type: number
        HighPassFilter:
          type: object
          properties:
            cutoff_frequency_hz:
              type: number
              minimum: 0
              maximum: 99999
        LowPassFilter:
          type: object
          properties:
            cutoff_frequency_hz:
              type: number
              minimum: 0
              maximum: 99999
        Compressor:
          type: object
          properties:
            threshold_db:
              type: number
            ratio:
              type: number
            attack_ms:
              type: number
            release_ms:
              type: number
    PostProcessingEffects:
      type: object
      description: Effects run on the output file after conversion.
      properties:
        Chorus:
          type: object
          properties:
            rate_hz:
              type: number
              minimum: 0
              maximum: 100
            depth:
              type: number
            centre_delay_ms:
              type: number
            feedback:
              type: number
            mix:
              type: number
        Reverb:
          type: object
          properties:
            room_size:
              type: number
              minimum: 0
              maximum: 1
            damping:
              type: number
              minimum: 0
              maximum: 1
            wet_level:
              type: number
              minimum: 0
              maximum: 1
            dry_level:
              type: number
              minimum: 0
              maximum: 1
            width:
              type: number
            freeze_mode:
              type: number
        Compressor:
          type: object
          properties:
            threshold_db:
              type: number
            ratio:
              type: number
            attack_ms:
              type: number
            release_ms:
              type: number
        Delay:
          type: object
          properties:
            delay_seconds:
              type: number
            feedback:
              type: number
            mix:
              type: number
              minimum: 0
              maximum: 1
  responses:
    TooManyRequests:
      description: Rate limit exceeded.
      content:
        text/plain:
          schema:
            type: string
    Forbidden:
      description: Attempted to fetch a resource that does not belong to the requesting user.
      content:
        text/plain:
          schema:
            type: string
    UnprocessableEntity:
      description: Request body or query params are invalid.
      content:
        text/plain:
          schema:
            type: string
    Unauthorized:
      description: Authentication was not provided or was invalid.
      content:
        text/plain:
          schema:
            type: string
  parameters:
    PerPage:
      name: perPage
      in: query
      description: Page size (default 10).
      schema:
        type: integer
        default: 10
    JobId:
      name: id
      in: path
      required: true
      schema:
        type: integer
    Order:
      name: order
      in: query
      description: Sort order, asc (default) or desc.
      schema:
        type: string
        enum:
        - asc
        - desc
        default: asc
    Page:
      name: page
      in: query
      description: Page offset (default 1).
      schema:
        type: integer
        default: 1
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key issued from the Kits AI API access page (https://app.kits.ai/api-access), sent as `Authorization: Bearer <api-key>`.'