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

# List Models

List all available models with their details.

<Note>
  External Documentation

  To learn more, visit the [LiteLLM documentation](https://litellm-api.up.railway.app/#/model%20management/model_list_v1_models_get).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter                   | Description                                                                                                                                                                                                                                                 |
  | --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Fallback Type               | Select the fallback type: <br /><br />\* `general` - alternative models.<br />\* `context_window` - larger context models.<br />\* `content_policy` - different safety policies.<br /><br />Defaults to `general` when `Include Metadata` is set to `True`. |
  | Include Metadata            | Select to include model metadata.                                                                                                                                                                                                                           |
  | Include Model Access Groups | Select to include model access groups.                                                                                                                                                                                                                      |
  | Only Model Access Groups    | Select to return model access groups only.                                                                                                                                                                                                                  |
  | Return Wildcard Routes      | Select to return wildcard routes.                                                                                                                                                                                                                           |
  | Team ID                     | The ID of the team to filter models by.                                                                                                                                                                                                                     |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"id": "gpt-4o-mini",
			"object": "model",
			"created": 1677610602,
			"owned_by": "openai",
			"metadata": {
				"fallbacks": []
			}
		}
	],
	"object": "list"
}
```

## Workflow Library Example

[List Models with Litellm and Send Results Via Email](https://library.blinkops.com/workflows/list-models-with-litellm-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-models-with-litellm-and-send-results-via-email/canvas" />
</div>
