# Whatchuneed Image Search

> Whatchuneed Image Search is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Searches the web for images based on a natural language query and returns relevant image results

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/search/images
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-image-search-c6ad0eef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ni7GviH0_zrvnqL22iVwh

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 whatchuneed-image-search-c6ad0eef -d '<json body>'
```

Example prompt: Can you search for images of sunset over the Golden Gate Bridge and give me a list of results I can browse through?

## When to prefer this

Use this endpoint when you need to search for images by natural language description and retrieve a list of relevant image URLs or metadata. It is a pay-per-call image search with no subscription required, making it suitable for agents that need occasional image lookups without committing to a dedicated image search API plan.

## Known failure modes

- Empty or vague input string returns no results
- Query too long or malformed may cause a validation error
- Service outage or upstream image search provider failure returns an error status
- Rate limiting or payment failure returns a 402 response
- No images found for highly niche or obscure queries

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a result object containing image search results, likely including image URLs, titles, and metadata for images matching the input query string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Request input"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-image-search-c6ad0eef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
