Gemini Flash Latest API

google/gemini-flash-latest
Google's auto-updated alias for the newest stable Gemini Flash model — same model ID, always current.
Context
1.0M tokens
Input
$2.0631 / 1M tokens
Output
$12.3786 / 1M tokens
Released
Apr 27, 2026

How to use Gemini Flash Latest API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to google/gemini-flash-latest.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/chat/completions",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "google/gemini-flash-latest",
      "messages": [
        {
          "role": "user",
          "content": "Hello!"
        }
      ]
    },
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "google/gemini-flash-latest",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \
  -H "Authorization: Bearer $AIMLAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"google/gemini-flash-latest","messages":[{"role":"user","content":"Hello!"}]}'

OpenAI-compatible — swap the base URL and it works with your existing SDK.

Gemini Flash Latest API Pricing

TypePrice
Input
$2.0631 / 1M tokens
Output
$12.3786 / 1M tokens
Cached input
$0.20631 / 1M tokens

Frequently asked questions

Gemini Flash Latest has a 1,048,576 tokens context window and can return up to 65,536 tokens.

Gemini Flash Latest takes image, text as input and returns text.

Use google/gemini-flash-latest as the model id. Requests go to https://api.aimlapi.com/v1/chat/completions.

Gemini Flash Latest became available on April 27, 2026.

Gemini Flash Latest is priced at input $2.0631 / 1M tokens, output $12.3786 / 1M tokens, cached input $0.20631 / 1M tokens.

Yes, Gemini Flash Latest can stream responses as they are generated.

Yes, Gemini Flash Latest accepts image input alongside text.

Gemini Flash Latest was built by Google.

It is available via the API endpoint https://api.aimlapi.com/v1/chat/completions using the model id google/gemini-flash-latest.

Start building with Gemini Flash Latest

Get API Key
1000+ models, one API.