# Google Images Search API (agent.connskill.com)

> Google Images Search API (agent.connskill.com) is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns Google Images results for a keyword, including image URL, source page URL, and alt text

## Facts

- Endpoint: POST https://agent.connskill.com/v1/image-search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-images-search-api-agent-connskill-com-3c9319a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zp5I7fDdbBpS0mrhexVvo

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-api-agent-connskill-com-3c9319a9 -d '<json body>'
```

Example prompt: Search Google Images for 'electric vehicle charging station' in the United States and give me up to 30 results, including each image URL, the page it came from, and its alt text.

## When to prefer this

Choose this endpoint when you need structured Google Images data — image URLs, source page URLs, and alt text — for a specific keyword, especially with localization control (country and language). It is preferable over general web scraping when you want clean image-specific results from Google, and when you need to target specific markets like Germany or the US. Use it over generic image APIs when you specifically want Google's image index rather than stock photo libraries.

## Known failure modes

- Missing required 'keyword' field returns a validation error
- Invalid language_code returns no results or defaults to German (de)
- Invalid location_code may return unexpected regional results
- Limit exceeding 100 is capped or rejected
- Google Images may return fewer results than requested for niche keywords
- Rate limiting or payment failure returns a 402 error

## How this service works

Google Images results for a keyword: image URL, page URL and alt text

## Output

An array of Google Images results for the queried keyword, each containing the direct image URL, the URL of the web page hosting the image, and the image's alt text. Results are capped at the requested limit (up to 100, default 20) and filtered by the specified language and location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "keyword"
 ],
 "properties": {
  "limit": {
   "type": "number",
   "description": "max 100, defaults to 20"
  },
  "keyword": {
   "type": "string",
   "description": "Search term. A one-element list is also accepted; its first entry is used."
  },
  "language_code": {
   "type": "string",
   "description": "ISO language code, defaults to de"
  },
  "location_code": {
   "type": "number",
   "description": "Location code (2276 = Germany, 2840 = United States)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "Google Images results for a keyword: image URL, page URL and alt text"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-images-search-api-agent-connskill-com-3c9319a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.connskill.com](https://www.zero.xyz/host/agent.connskill.com/llms.txt)
