# ScrapFly Image Search

> ScrapFly Image Search is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/search/images
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-image-search-de83c525
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_em6t_wybBLNs5av5msrom

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-de83c525 -d '<json body>'
```

Example prompt: Search the web for images of 'golden retriever puppies playing outside' and bring back 10 results.

## When to prefer this

Use this endpoint when you need to programmatically search for and retrieve web images by keyword, especially within an agentic pipeline that requires pay-per-use image search without needing a Google or Bing API key. Prefer this when you want a lightweight, on-demand image search that bills per request via crypto microtransaction.

## Known failure modes

- Empty or missing query returns validation error
- No images found for obscure or restricted queries
- Payment failure over x402/Base chain blocks request
- Rate limiting if too many requests are sent in quick succession
- Network timeout if upstream image search is slow

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing image search results including image URLs and associated metadata for images 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-de83c525/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
