> ## 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 available models.

<Note>
  External Documentation

  To learn more, visit the [Anthropic documentation](https://docs.anthropic.com/en/api/models-list).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                                                                                                                                                                                                                                                              |
  | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | After Cursor  | The ID of the object to use as a cursor for pagination. When provided, the page of results immediately after this object will be retrieved.<br /><br />To get the next page of results, use the value from the `last_id` property of a response.<br /><br />**Note**: Specifying both `Before Cursor` and `After Cursor` is not allowed. |
  | Before Cursor | The ID of the object to use as a cursor for pagination. When provided, get the page of results immediately before this object.<br /><br />To get the previous page of results, use the value from the `first_id` property of a response.<br /><br />**Note**: Specifying both `Before Cursor` and `After Cursor` is not allowed.         |
  | Limit         | The number of items to get per page.<br /><br />Values can range from `1` to `1000`.                                                                                                                                                                                                                                                     |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"type": "model",
			"id": "claude-3-7-sonnet-20250219",
			"display_name": "Claude 3.7 Sonnet",
			"created_at": "2025-02-19T00:00:00Z"
		}
	],
	"has_more": true,
	"first_id": "<string>",
	"last_id": "<string>"
}
```

## Workflow Library Example

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