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

# Retrieve Voice Clone Quota

> How many voices the workspace has cloned, and the cap that applies to the default provider.

`current_count` is the number of cloned voices in the workspace, whichever provider they were cloned with.

`max_count` describes the default provider, `fishaudio`, which has no cap — so it is reported as a large sentinel value (`999999`) rather than a real limit. `max_count - current_count` will always tell you there is room to clone.

The only cap that exists is on ElevenLabs voices (one voice slot each; 3 per workspace by default). It is enforced when you call [Clone Voice](/api-reference/voices/clone-voices) with `voice_provider: "elevenlabs"`, and the error response says how many slots you have.


## OpenAPI

````yaml get /api/voices/count/
openapi: 3.0.3
info:
  title: creatify.ai API
  version: 1.0.0
  description: API for creatify.ai
servers: []
security: []
paths:
  /api/voices/count/:
    get:
      tags:
        - voices
      operationId: voices_count_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceCloneCount'
          description: ''
      security:
        - X-API-ID: []
          X-API-KEY: []
components:
  schemas:
    VoiceCloneCount:
      type: object
      properties:
        max_count:
          type: integer
          description: >-
            The maximum number of cloned voices allowed in the workspace.
            FishAudio, the default provider, has no limit, so this reports
            999999; ElevenLabs clones are still bounded by purchased voice
            slots.
        current_count:
          type: integer
          description: The number of cloned voices currently in the workspace.
      required:
        - current_count
        - max_count
  securitySchemes:
    X-API-ID:
      type: apiKey
      in: header
      name: X-API-ID
      description: API ID, from your settings page.
    X-API-KEY:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API Key, from your settings page.

````