Irmu
Search & Maps

Google Images API

Image results with source pages, dimensions and thumbnails.

Start freeGET https://app.irmu.com/api/crawl12 credits
Why

Why teams scrape Google Images

Google Images holds some of the most commercially useful public data on the web, and almost none of it is available through a stable official feed at the volume real products need. Rate limits, partner-only access and shifting page structures mean teams either give up on the source or maintain a fragile scraper that breaks every few weeks.

Image search is the fastest route to visual datasets, counterfeit detection and reverse-attribution work, but bulk collection is exactly what the interface is built to prevent.

Irmu removes the infrastructure question entirely. One authenticated request handles proxy selection, browser rendering, anti-bot challenges and retries, and AI Extract turns the resulting page into validated JSON against a schema you define. You get image_url, thumbnail, source_page, title, dimensions, domain without writing or maintaining a single selector, and the same endpoint, quota and observability model you already use for every other source.

Use cases

What it powers

  • Counterfeit detection

    Find unauthorized uses of your product imagery.

  • Visual dataset building

    Collect labelled image sets for model training.

  • Brand asset audits

    Check which images rank for your brand terms.

  • Creative research

    Survey visual conventions in a category.

Data

Fields available

Everything below comes back typed and validated against your schema.

image_url

Full-resolution image URL

thumbnail

Thumbnail URL

source_page

Page hosting the image

title

Image title text

dimensions

Width and height

domain

Source domain

Request

One call, no selectors

request.sh
curl -G https://app.irmu.com/api/crawl \
  -H "Authorization: Bearer $IRMU_API_KEY" \
  --data-urlencode "url=https://www.google.com/search?tbm=isch&q=modern+kitchen" \
  --data-urlencode "premium=true" \
  --data-urlencode "ai_query=Extract image_url, thumbnail, source_page, title, dimensions, domain as JSON"
Response

Validated JSON

response.json
{
  "url": "https://www.google.com/search?tbm=isch&q=modern+kitchen",
  "domain": "www.google.com",
  "premium": true,
  "js": true,
  "ai_query": "Extract image_url, thumbnail, source_page, title, dimensions, domain as JSON",
  "credits_charged": 12,
  "status": "completed",
  "data": {
    "image_url": "https://cdn.example.com/kitchen.jpg",
    "source_page": "https://example.com/kitchens",
    "dimensions": "1920x1080"
  },
  "error": null
}
SDKs

Copy, paste, ship

import os, requests

res = requests.get(
    "https://app.irmu.com/api/crawl",
    params={
        "url": "https://www.google.com/search?tbm=isch&q=modern+kitchen",
        "premium": "true",
        "ai_query": "Extract image_url, thumbnail, source_page, title as JSON",
    },
    headers={"Authorization": f"Bearer {os.environ['IRMU_API_KEY']}"},
)

print(res.json()["data"])
Pricing

Simple credits

Per result set page

12 credits

Requests we fail to serve for internal reasons, or to domains we do not cover, are not billed.

See full pricing →
FAQ

Google Images API questions

Start extracting Google Images data today

200 free credits every month. No card, no sales call.