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

# Free Models

> Models available at no cost through the Requesty gateway, with daily request limits per organization

Requesty offers a selection of models that are free to use. They run through the same gateway as every other model, so you get the same [OpenAI-compatible API](/quickstart), routing policies, logging, and analytics with no token charges.

<Info>These models are free for now. Pricing may change in the future, and any change will be announced in the [changelog](/changelog) ahead of time.</Info>

## Available free models

| Model                                | Input \$/M | Output \$/M |
| ------------------------------------ | ---------- | ----------- |
| `nvidia/nemotron-3-ultra-550b-a55b`  | Free       | Free        |
| `nvidia/nemotron-3-super-120b-a12b`  | Free       | Free        |
| `poolside/laguna-xs.2`               | Free       | Free        |
| `poolside/laguna-m.1`                | Free       | Free        |
| `google/gemma-4-31b-it`              | Free       | Free        |
| `nvidia/nemotron-3.5-content-safety` | Free       | Free        |

## Daily request limits

Free model usage is limited per organization per day:

| Organization         | Requests per day |
| -------------------- | ---------------- |
| New organizations    | 50               |
| Paying organizations | 200              |

The limit applies across all free models combined and resets daily. Once you hit the limit, requests to free models return a rate limit error until the next reset. Paid models are not affected.

## Usage

Call a free model exactly like any other model on the gateway:

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

client = openai.OpenAI(
    api_key="YOUR_REQUESTY_API_KEY",
    base_url="https://router.requesty.ai/v1",
)

response = client.chat.completions.create(
    model="nvidia/nemotron-3-super-120b-a12b",
    messages=[{"role": "user", "content": "Hello!"}],
)

print(response.choices[0].message.content)
```

## Resources

* [Model Library (Free Models)](https://app.requesty.ai/model-library?scope=all\&free=1) to browse all free models in the Requesty dashboard
* [Supported Models](/features/supported-models) for the full model catalog
* [API Limits](/features/api-limits) for gateway rate limiting in general
* [Fallback Policies](/features/fallback-policies) to fall back to a paid model when the daily limit is reached
