# Serper Google Images Search

> Serper Google Images Search is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15, last successful call 2026-08-09).

Search Google Images via Serper and return image results with URLs, dimensions, titles, and source domains

## Facts

- Endpoint: POST https://stableenrich.dev/api/serper/images
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-08-09
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 2 reviews
- Activations on Zero: 23
- Tags: x402
- Canonical page: https://www.zero.xyz/c/serper-google-images-search-cdfc2157
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H5O-ndjqpKk-75PGlCFXt

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability serper-google-images-search-cdfc2157 -d '<json body>'
```

Example prompt: Search Google Images for 'golden retriever puppies playing' and give me 10 results in English from the US — I need the image URLs, titles, and source domains.

## When to prefer this

Use this endpoint when you need Google Images search results with rich metadata (URLs, dimensions, source info) programmatically. Prefer this over generic web search endpoints when visual content discovery is the goal and you specifically need image URLs and thumbnail data rather than text snippets.

## Known failure modes

- Empty results array if query returns no images
- Missing or null image dimensions if not available from source
- Invalid country code (gl) or language code (hl) causing unexpected results
- Query too vague returning irrelevant images
- Rate limiting or payment failure returning an error

## How this service works

Pay-per-request access to FullEnrich, CompanyEnrich, LeadMagic, Clado, Exa, Firecrawl, Google Maps, Serper, and Whitepages APIs. No auth, no subscriptions.

## Output

An array of image objects each containing the direct image URL, thumbnail URL and dimensions, image width and height, page title, source domain, page link, position rank, and Google image URL, along with the original search parameters echoed back.

## Example request

```json
{
 "q": "artificial intelligence",
 "gl": "us",
 "hl": "en",
 "num": 10
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "minLength": 1,
   "description": "Google search query"
  },
  "gl": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2,
   "description": "Country code (e.g. 'us')"
  },
  "hl": {
   "type": "string",
   "minLength": 2,
   "description": "Language code (e.g. 'en')"
  },
  "num": {
   "type": "integer",
   "maximum": 100,
   "minimum": 1,
   "description": "Number of results to return (Serper `num`)"
  },
  "location": {
   "type": "string",
   "minLength": 1,
   "description": "Location (e.g. 'New York, NY')"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/serper-google-images-search-cdfc2157/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
