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

# Supported Models

> Browse the 300+ AI models available through Requesty with pricing, context windows, and capabilities

Requesty gives you access to 300+ models from OpenAI, Anthropic, Google, DeepSeek, xAI, Mistral, and more, all through a single OpenAI-compatible API endpoint. See the [Quickstart](/quickstart) to get started.

## Browse Models

<CardGroup cols={2}>
  <Card title="Model Catalog" icon="cube" href="https://www.requesty.ai/models">
    Browse every supported model with up-to-date pricing, context windows, and capabilities.
  </Card>

  <Card title="Model Library" icon="magnifying-glass" href="https://app.requesty.ai/model-library">
    Interactive browser with filtering by provider, capability, and modality (requires an account).
  </Card>
</CardGroup>

## Programmatic Access

Fetch the current model list programmatically:

```bash theme={"dark"}
curl https://router.requesty.ai/v1/models \
  -H "Authorization: Bearer $REQUESTY_API_KEY"
```

```python theme={"dark"}
from openai import OpenAI

client = OpenAI(base_url="https://router.requesty.ai/v1", api_key="your-key")
models = client.models.list()
for model in models:
    print(model.id)
```

<Note>Model availability and pricing may change. The [`GET /v1/models`](/api-reference/endpoint/models-list) endpoint always returns the current state.</Note>
