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

# Gemini 3.7 Flash

> Google's Gemini 3.7 Flash language model. See supported inputs, parameters, pricing, response fields, and API examples.

Gemini 3.7 Flash is Google's fast, cost-efficient language model for high-throughput reasoning, coding, and long-context tasks.

## Model

```
google/gemini-3.7-flash
```

|              |                  |
| ------------ | ---------------- |
| **Provider** | Google           |
| **Name**     | Gemini 3.7 Flash |

## Supported Endpoints

All three API formats are supported:

* [Chat Completions](/api-reference/v1-chat-completions) — `POST /v1/chat/completions`
* [Responses](/api-reference/v1-responses) — `POST /v1/responses`
* [Messages](/api-reference/v1-messages) — `POST /v1/messages`

## Example

```bash theme={null}
curl -X POST https://api.unifically.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "google/gemini-3.7-flash",
    "messages": [
      {"role": "user", "content": "Summarize this document in three bullet points."}
    ]
  }'
```
