> ## 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



## 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
        current_count:
          type: integer
          description: The current number of cloned voices used 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.

````