BlockRun
Back to Models

Gemini 3.5 Flash Lite

google/gemini-3.5-flash-lite

google

Latest Flash Lite — ultra-fast, lightweight Gemini with thinking mode for high-throughput tasks

Code Examples

from blockrun_llm import LLMClient

client = LLMClient()  # Uses BLOCKRUN_WALLET_KEY (never sent to server)
response = client.chat("google/gemini-3.5-flash-lite", "Hello!")
import { LLMClient } from '@blockrun/llm';

const client = new LLMClient();  // Uses BLOCKRUN_WALLET_KEY (never sent to server)
const response = await client.chat('google/gemini-3.5-flash-lite', 'Hello!');
curl -X POST https://blockrun.ai/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "PAYMENT-SIGNATURE: <payment_header>" \
  -d '{
    "model": "google/gemini-3.5-flash-lite",
    "messages": [{"role": "user", "content": "Hello!"}],
    "max_tokens": 1024
  }'
0.75 s
median latency
1.65 s
p95 latency
100.00%
success rate
100+
calls, last 7 days

On BlockRun since 2026-08-03. Measured on BlockRun over the last 7 days, end to end, successful calls only. Not a vendor benchmark.

Pricing

Input$0.30 / 1M tokens
Output$2.50 / 1M tokens
Context1M tokens
Max Output66K tokens

No markup on official Google rates; $0.001 fee per call.

Payment

Network
Base
Currency
USDC
Protocol
x402

Pay per request with USDC on Base. No subscription required.

Try It

Send a message to try Gemini 3.5 Flash Lite

Connect your wallet to enable payments

About Google Gemini 3.5 Flash Lite

Gemini 3.5 Flash Lite is a reasoning model from Google with a 1.05M-token context window and up to 66K tokens of output per call. It is billed per token at the provider's list rate, with no markup on chat tokens. It is served through BlockRun's OpenAI-compatible API, so it can be called without an account, an API key, or a subscription.

What it costs

Gemini 3.5 Flash Lite is billed per token. The underlying rates are $0.30 per million input tokens and $2.50 per million output tokens with no platform margin on chat tokens; only a small per-transaction fee covering on-chain settlement is added on top, and the resulting price is quoted in the 402 before you pay. You are charged for the tokens a request actually consumes — there is no monthly commitment and no unused balance to forfeit. With a context window of 1,048,576 tokens and up to 65,536 tokens of output, a single call can carry a substantial working set.

Specifications

Context window
1,048,576 tokens
Maximum output
65,536 tokens
API compatibility
OpenAI-compatible
Payment
USDC via x402
Categories
chat, reasoning

Calling it from your code

Pass google/gemini-3.5-flash-lite as the model field. Because the endpoint mirrors the OpenAI chat completions schema, any existing OpenAI client works by changing the base URL — streaming, tool use, and multi-turn messages all behave the same way.

The first request returns a 402 carrying the exact price; a signed retry runs it, and client libraries fold the two into one call — how the payment works. See the documentation for request and response shapes, the LLM API page for every model on this endpoint, or browse the full catalog of 78 chat models to compare alternatives.

Related models

Every model on BlockRun is reached through the same endpoint and the same payment flow, so switching is a one-line change to the model field. These are the closest alternatives to Gemini 3.5 Flash Lite:

Two ways to run this

Get an API key

Sign in, get a key, and call the same endpoints with usage billed to your account. For teams that want one invoice instead of one wallet.

Get an API key 

Or let your agent pay per call, in USDC

No account, no API key. Three steps, and the last one is the request this page is about.

  1. 01
    Point your agent at BlockRun

    Install ClawRouter, or add the BlockRun MCP server to Claude Code, Cursor, Codex or OpenClaw. Any OpenAI-compatible client works too — change the base URL, nothing else.

    curl -fsSL https://blockrun.ai/ClawRouter-update | bash
  2. 02
    Fund a wallet with USDC

    Send USDC to a wallet on Base or Solana. There is no account to create and no API key to issue: the wallet is the account, and it pays per call.

  3. 03
    Call Gemini 3.5 Flash Lite

    The first call returns HTTP 402 with the exact price, your agent signs it, and the answer comes back. Payment settles on-chain; nothing is charged if the call fails.

    curl -X POST https://blockrun.ai/api/v1/chat/completions \
      -H "Content-Type: application/json" \
      -d '{"model": "google/gemini-3.5-flash-lite", "messages": [{"role": "user", "content": "Hello!"}]}'