# DataPipe Image Search API

> DataPipe Image Search API is a paid API for AI agents from v2kidnapi.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Searches the web for images matching a query and returns image results, payable via x402 on Base chain

## Facts

- Endpoint: POST https://v2kidnapi.vercel.app/api/search/images
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datapipe-image-search-api-2c1066f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iIuUPGja7JdrYDiZoDYYH

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 datapipe-image-search-api-2c1066f6 -d '<json body>'
```

Example prompt: Can you search for 10 images of the Golden Gate Bridge at sunset and give me the results?

## When to prefer this

Use this endpoint when an AI agent needs programmatic access to image search results for a given keyword or phrase, especially within a multi-step pipeline that also requires news, Reddit, or web scraping from the same DataPipe provider. Prefer this over general web search endpoints when image-specific results are needed and x402 micropayment on Base chain is already configured.

## Known failure modes

- Missing required 'query' field returns validation error
- Payment failure on Base chain blocks request
- Query returns zero results for highly obscure or restricted terms
- Upstream image search provider unavailable causing 5xx error
- Invalid 'num' parameter type causes schema validation failure

## How this service works

Multi-source data API for AI agents. Search, news, Reddit, translation, web scraping. Pay with x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing image search results including image URLs and associated metadata for the queried topic.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "num": {
   "type": "number",
   "description": "Number of results"
  },
  "query": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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