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

# List Models

> Get the available inference models

Returns the models currently available for chat completions. Free — no payment required. Results are cached server-side for 5 minutes.

## Response

<ResponseField name="data" type="array">
  List of available models.

  <Expandable title="properties">
    <ResponseField name="id" type="string">
      Model ID to pass as `model` in [`POST /v1/inference/chat`](/api-reference/inference/chat).
    </ResponseField>

    <ResponseField name="label" type="string">
      Human-readable model name.
    </ResponseField>

    <ResponseField name="vision" type="boolean">
      Whether the model accepts image input.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={"theme":{"light":"github-light","dark":"github-dark-high-contrast"}}
  curl https://api.mrdn.finance/v1/inference/models
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={"theme":{"light":"github-light","dark":"github-dark-high-contrast"}}
  {
    "data": [
      { "id": "dolphinserver:24B", "label": "Dolphin 24B", "vision": false },
      { "id": "dolphinserver2:6b", "label": "Dolphin X1 Nano", "vision": false }
    ]
  }
  ```
</ResponseExample>
