Gemini Pro Latest API

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

How to use Gemini Pro Latest API

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

r = requests.post(
    "https://api.aimlapi.com/v1/chat/completions",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "google/gemini-pro-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-pro-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-pro-latest","messages":[{"role":"user","content":"Hello!"}]}'

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

Gemini Pro Latest API Pricing

TypePrice
Input
$2.7508 / 1M tokens
Output
$16.5048 / 1M tokens
Cached input
$0.27508 / 1M tokens

Frequently asked questions

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

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

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

Gemini Pro Latest became available on April 27, 2026.

Gemini Pro Latest is priced at input $2.7508 / 1M tokens, output $16.5048 / 1M tokens, cached input $0.27508 / 1M tokens.

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

Yes, Gemini Pro Latest accepts image input alongside text.

Gemini Pro Latest was built by Google.

It is available via API at https://api.aimlapi.com/v1/chat/completions.

Start building with Gemini Pro Latest

Get API Key
1000+ models, one API.