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

# List models

> Lists all models supported by LLMstudio

<ParamField body="provider" type="string">
  Provider id used to filter models
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  {
    "anthropic": {
      "name": "Anthropic",
      "models": [
        "claude-3-opus-20240229",
        "claude-3-sonnet-2024022",
        "claude-2.1",
        "claude-2",
        "claude-instant-1.2"
      ]
    },
    "ollama": {
      "name": "Ollama",
      "models": ["llama2"]
    },
    "openai": {
      "name": "OpenAI",
      "models": [
        "gpt-4-1106-preview",
        "gpt-4",
        "gpt-4-0314",
        "gpt-4-0613",
        "gpt-3.5-turbo",
        "gpt-3.5-turbo-0301",
        "gpt-3.5-turbo-0613",
        "gpt-3.5-turbo-1106",
        "gpt-3.5-turbo-16k",
        "gpt-3.5-turbo-16k-0613"
      ]
    },
    "azure": {
      "name": "Azure",
      "models": ["gpt-4-1106-preview", "gpt-3.5-turbo-16k", "gpt-3.5-turbo"]
    }
  }
  ```

  ```json Response (using provider) theme={null}
  {
    "name": "Anthropic",
    "models": ["claude-2.1", "claude-2", "claude-instant-1.2", "claude-instant-1"]
  }
  ```
</ResponseExample>
