# Google Images Search via Serper.dev (x402)

> Google Images Search via Serper.dev (x402) is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Searches Google Images for a given query and returns compact JSON with top image results including URLs, dimensions, titles, and source links — pay-per-call with no account required.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/web/images
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-images-search-via-serper-dev-x402-91507463
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_POcmzXlv3nSyACKAjQCkR

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 google-images-search-via-serper-dev-x402-91507463 -d '<json body>'
```

Example prompt: Search Google Images for 'golden retriever puppies playing in snow' and give me the top 5 results with their image URLs, source pages, and dimensions.

## When to prefer this

Choose this endpoint when you need Google Images results (image URLs + source pages + dimensions) without setting up a Serper.dev account or API key, and you want to pay per-call in USDC on Base via x402. It's ideal for agents that need occasional image lookups at low cost ($0.004/call) without a subscription. Prefer this over scraping solutions when you need clean structured JSON and over full-page search when you specifically want image results with dimension metadata.

## Known failure modes

- Zero results returned for very niche or misspelled queries — valid response, not an error
- Invalid country or language code causes malformed request
- Requesting more than 10 results (max is num=10) may be ignored or cause an error
- Payment failure (insufficient USDC on Base) blocks the call before execution
- Very long or unusual query strings may return unexpected results

## How this service works

Google Images search for AI agents at $0.004 per call, from the same Serper.dev source as /web/search. Send a query, get back compact JSON: top image results with position, title, image URL, source page link and dimensions. Tune with num (1-10 results), country and language (2-letter codes). Zero results is a valid, honest answer. Pay per call in USDC on Base, no account, no API key.

## Output

Returns a JSON array of image results, each containing: position rank, image title, direct image URL, source page URL, and image dimensions (width and height). Zero results is a valid response if no images are found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-images-search-via-serper-dev-x402-91507463/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
