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

# List Llm Models

> List the model names accepted by dataforseo_audit_llm_answer, per provider (chat_gpt, claude, gemini, perplexity)

List the model names accepted by dataforseo\_audit\_llm\_answer, per provider (chat\_gpt, claude, gemini, perplexity). Free.

|                      |                              |
| -------------------- | ---------------------------- |
| **App**              | DataForSEO                   |
| **Operation ID**     | `dataforseo_list_llm_models` |
| **Type**             | Action                       |
| **Connection**       | `dataforseo` (required)      |
| **Credits per run**  | Free                         |
| **Agent / MCP tool** | Yes                          |

## Inputs

| Field      | Type                       | Required | Default | Description                                                                                        |
| ---------- | -------------------------- | -------- | ------- | -------------------------------------------------------------------------------------------------- |
| `provider` | string or SelectableOption | No       | -       | Limit the list to one provider: chat\_gpt, claude, gemini or perplexity. Leave empty for all four. |

### SelectableOption

| Field   | Type   | Required | Default | Description |
| ------- | ------ | -------- | ------- | ----------- |
| `value` | string | Yes      | -       |             |
| `label` | string | Yes      | -       |             |

## Output

**Type**: `List[Dict]`

Returns one row per model: provider, model\_name.

**Fields**: `provider`, `model_name`

**Example**:

```json theme={"dark"}
[
  {
    "provider": "chat_gpt",
    "model_name": "gpt-4.1-mini"
  }
]
```
