> ## 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

Get a list of all Gemini's models.

<Note>
  External Documentation

  To learn more, visit the [Gemini documentation](https://ai.google.dev/api/models#method:-models.list).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter                | Description                                                                                                                                                                                                            |
  | ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter Deprecated Models | When checked, most unavailable models will not be obtained in the response.<br /><br />**Note**: Some returned models may still be deprecated. Using this option increases the likelihood of getting available models. |
</div>

## Example Output

```json theme={"dark"}
{
	"models": [
		{
			"name": "models/chat-bison-001",
			"version": "001",
			"displayName": "PaLM 2 Chat (Legacy)",
			"description": "A legacy text-only model optimized for chat conversations",
			"inputTokenLimit": 4096,
			"outputTokenLimit": 1024,
			"supportedGenerationMethods": [
				"generateMessage",
				"countMessageTokens"
			],
			"temperature": 0.25,
			"topP": 0.95,
			"topK": 40
		},
		{
			"name": "models/text-bison-001",
			"version": "001",
			"displayName": "PaLM 2 (Legacy)",
			"description": "A legacy model that understands text and generates text as an output",
			"inputTokenLimit": 8196,
			"outputTokenLimit": 1024,
			"supportedGenerationMethods": [
				"generateText",
				"countTextTokens",
				"createTunedTextModel"
			],
			"temperature": 0.7,
			"topP": 0.95,
			"topK": 40
		}
	],
	"nextPageToken": "ChVtb2RlbHMvdGV4dC1iaXNvbi0wMDE="
}
```

## Workflow Library Example

[List Models with Gemini and Send Results Via Email](https://library.blinkops.com/workflows/list-models-with-gemini-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-gemini-and-send-results-via-email/canvas" />
</div>
