> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Models

> Retrieve a list of all available AI models

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates whether the request was successful
</ResponseField>

<ResponseField name="message" type="string">
  Response message describing the result
</ResponseField>

<ResponseField name="data" type="array">
  Array of model objects
</ResponseField>

<ResponseField name="data[].id" type="string">
  Unique model identifier
</ResponseField>

<ResponseField name="data[].model_name" type="string">
  Model name
</ResponseField>

<ResponseField name="data[].description" type="string">
  Model description
</ResponseField>

<ResponseField name="data[].category" type="string">
  Model category: "cloned" or "professional"
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/models \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  import { SixtyDBClient } from "60db";

  const client = new SixtyDBClient("your-api-key");

  const models = await client.getModels();
  console.log(models);
  ```

  ```python Python theme={null}
  from sixtydb import SixtyDBClient

  client = SixtyDBClient('your-api-key')

  models = client.get_models()
  for model in models:
      print(f"{model['name']} - {model['type']}")
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
      "success": true,
      "message": "Models fetched successfully",
      "data": [
          {
              "id": "qcall-fast-v01",
              "model_name": "60db Fast",
              "description": "Fast voice cloning model for quick voice creation",
              "category": "cloned"
          },
          {
              "id": "qcall-quality-v01",
              "model_name": "60db Quality",
              "description": "High quality professional voice model for production use",
              "category": "professional"
          }
      ]
  }
  ```
</ResponseExample>
