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.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Cached input |
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.