How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Gemini 3.1 Flash Image Preview now available in AI Gateway

calendar_today February 25, 2026 person domain netlify
Google’s Gemini 3.1 Flash Image Preview, also known as Nano Banana 2, is now available through AI Gateway. You can call this image generation model from Netlify Functions without configuring API keys; the AI Gateway provides the connection to Google for you. Example usage in a Function: import { GoogleGenAI } from ‘@google/genai’; export default async (request: Request) => { const url = new URL(request.url); const prompt = url.searchParams.get(‘prompt’)   ‘two happy bananas’; const ai = new GoogleGenAI({}); try { const response = await ai.models.generateContent({ model:…
open_in_new Read original post