Command Palette

Search for a command to run...

YepAPI
Google/v1/media/queue

Gemini Image Analysis

AI image analysis via Gemini. Object detection, captioning, classification, and visual Q&A.

Image understanding via Gemini. Object detection, segmentation, captioning, classification, and visual Q&A. 258 tokens per image.

Try it live

Upload an image and analyze it with Gemini Image Analysis.

POST/v1/media/queue

Drop image or click to upload

PNG, JPG, WebP — max 4MB

Response
Hit "Send Request" to see the response

Input Price

$0.20 / 1M tokens

Output Price

$0.80 / 1M tokens

Strengths

Object detection
Segmentation
Captioning
Visual Q&A

Quick start

Copy this snippet and start making calls with Gemini Image Analysis.

// Step 1: Submit job
const res = await fetch('https://api.yepapi.com/v1/media/queue', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    "model": "google/gemini-image-analysis-3",
    "prompt": "What objects are in this image? Return bounding boxes and labels.",
    "imageData": {
      "mimeType": "image/png",
      "base64": "BASE64_DATA"
    }
  }),
});
const { data } = await res.json();
const jobId = data.jobId;

// Step 2: Poll for result
const status = await fetch(`https://api.yepapi.com/v1/media/status/${jobId}`, {
  headers: { 'x-api-key': 'YOUR_API_KEY' },
});
const { data: job } = await status.json();
// job.status: "pending" | "processing" | "completed" | "failed"
// job.result: { text?, image?, audio?, video? }

Why use Gemini Image Analysis through YepAPI?

One API key for all models — no separate accounts
No monthly minimums — pay per call
Switch models with one line of code
Simple REST API — works from any language
Unified billing across all providers
No rate limits for most use cases

Frequently asked questions

Image understanding via Gemini. Object detection, segmentation, captioning, classification, and visual Q&A. 258 tokens per image.

Pricing for Gemini Image Analysis through YepAPI is based on usage. No monthly minimums — you only pay for what you use.

Sign up for a free API key, then send requests to the /v1/media/queue endpoint.

Ready to use Gemini Image Analysis?

Get your API key and start making calls in 30 seconds. No credit card required.

Explore more models