Routeway Logo
Back to Models
Google

Gemini 2.5 Flash

Available
5% offA 5% discount applies to input and output token pricing only.

Description

A thinking model designed for a balance between price and performance. It builds upon Gemini 2.0 Flash with upgraded reasoning, hybrid thinking control, multimodal capabilities, and a 1M token input context window.

At a Glance

Key pricing and model details available for this model.

Input price

$0.28$0.27

per 1M tokens

Output price

$2.37$2.25

per 1M tokens

Context window

1.0M

tokens

Hallucination rate

1.3%

Token Pricing

Token pricing normalized to per-million-token rates.

Input / 1M tokens

$0.28$0.27

Output / 1M tokens

$2.37$2.25

Cache Read / 1M tokens

$0.03

Token Pricing Details

Rates are shown per 1M tokens for easier comparison.

Input / 1M tokens$0.27
Input unit1M tokens
Output / 1M tokens$2.25
Output unit1M tokens
Cache Read / 1M tokens$0.03
Cache Read unit1M tokens

Feature Availability

Capabilities explicitly listed in the current payload.

LLM

Available

Yes

Vision

Available

Yes

Function calling

Available

Yes

Reasoning

Not listed

No

Supported Parameters

frequency_penalty
logit_bias
max_completion_tokens
presence_penalty
reasoning_effort
response_format
stop
temperature
tool_choice
tools
top_p

Artificial Analysis

Index scores currently reported for this model.

Intelligence Index

27

Coding Index

22.2

Math Index

73.3

Category Radar

Aggregated from the benchmark values present for reasoning, code, math, and accuracy.

Benchmark Breakdown

Detailed benchmark results drawn from the current payload.

Intelligence Index

index

Overall 'how smart' score for an AI, combining reasoning, math, coding, and knowledge.

27

Reported score

Coding Index

index

How well the model handles real programming tasks.

22.2

Reported score

Math Index

index

Composite score measuring mathematical reasoning and problem-solving.

73.3

Reported score

MMLU-Pro

reasoning

A broad and difficult knowledge-and-reasoning benchmark across many subjects.

83.2%

Reported score

GPQA

reasoning

Graduate-level science questions designed to be difficult to shortcut.

79%

Reported score

HLE

reasoning

A very hard expert-level exam across a wide range of subjects.

11.1%

Reported score

LiveCodeBench

code

Fresh programming tasks meant to test current coding ability.

69.5%

Reported score

SciCode

code

Coding tasks drawn from real scientific workflows.

39.4%

Reported score

MATH-500

math

A set of difficult competition-style math problems.

98.1%

Reported score

AIME

math

Advanced math competition questions.

82.3%

Reported score

AIME 2025

math

The 2025 AIME benchmark used to reduce data leakage concerns.

73.3%

Reported score

IFBench

accuracy

Measures how precisely the model follows detailed instructions.

50.3%

Reported score

LCR

accuracy

Tests long-context reasoning over large documents and conversations.

61.7%

Reported score

TerminalBench Hard

code

A harder coding-agent benchmark for complex multi-step terminal tasks.

13.6%

Reported score

Tau2

accuracy

Evaluates realistic agent behavior in tool-using support workflows.

31.6%

Reported score

Code Samples

Quick start with the Routeway API

import OpenAI from 'openai';

const openai = new OpenAI({
  baseURL: "https://api.routeway.ai/v1",
  apiKey: "<YOUR_API_KEY>",
});

async function main() {
  const completion = await openai.chat.completions.create({
    model: "gemini-2.5-flash",
    messages: [
      {
        role: "user",
        content: "Explain quantum computing in simple terms"
      }
    ]
  });

  console.log(completion.choices[0].message);
}

main();