# ScrapFly Image Search API

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

Searches the web for images matching a text query and returns image results

## Facts

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

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 scrapfly-image-search-api-4b420668 -d '<json body>'
```

Example prompt: Search the web for images of 'golden retriever puppies playing in snow' and return 10 results.

## When to prefer this

Use this endpoint when you need to programmatically retrieve image search results from the web by keyword, especially inside an automated agent workflow that pays per request via x402 on Base chain. Prefer this over general web scraping endpoints when the specific need is image discovery by text query.

## Known failure modes

- Empty query string causes validation error
- No results found for highly niche or obscure queries
- Rate limiting or payment failure via x402 protocol
- Query returns irrelevant images if too vague
- Response may be truncated if num is set very high

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a success flag and a data object containing image search results, including image URLs and associated metadata for each result matching the query.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

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