# Icypeas Search Result Fetcher

> Icypeas Search Result Fetcher is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetch the result of a previously launched Icypeas email search, email verification, or domain scan, or list recent searches.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/icypeas/result
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/icypeas-search-result-fetcher-b8e81e34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v97Uf0CTQ3p0OsiDqsRnm

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 icypeas-search-result-fetcher-b8e81e34 -d '<json body>'
```

Example prompt: Check the Icypeas result for the search I just launched — the job ID is 64f2a1b3c8e4d00012ab3456; keep polling every 4 seconds until the status is FOUND or NOT_FOUND and then show me the results.

## When to prefer this

Use this endpoint after calling an Icypeas launch endpoint (email-search, email-verification, or domain-scan) to retrieve results asynchronously. It is the correct polling/retrieval step in the Icypeas two-step workflow. Prefer it when you have a job ID and need to wait for completion, or when you want to list recent searches without re-running them.

## Known failure modes

- Invalid or unknown ID returns empty or error response
- Status remains IN_PROGRESS/SCHEDULED indefinitely if the upstream Icypeas job is stuck
- Rate limit exceeded if polling faster than 30 reads/min
- Providing an incorrect mode or type filter returns an unexpected or empty list
- DEBITED_NOT_FOUND indicates the search was processed and charged but no results were found

## How this service works

Fetch the result of an Icypeas search launched by icypeas/email-search, email-verification, or domain-scan. Pass `id` (the `item._id` from the launch response); or list recent searches with `mode: "single"` (+ optional `type`: email-search|domain-scan|email-verification) or `mode: "bulk"`, `limit` ≤ 100. Read `items[0].status`: NONE/SCHEDULED/IN_PROGRESS = keep polling (every 3-5s, ≤30 reads/min); FOUND/DEBITED = done, read `items[0].results`; NOT_FOUND/DEBITED_NOT_FOUND = processed, nothing fo…

## Output

Returns an items array where each item includes a status field (NONE, SCHEDULED, IN_PROGRESS, FOUND, DEBITED, NOT_FOUND, DEBITED_NOT_FOUND) and, when complete, a results field with the discovered emails, domain contacts, or verification outcome from Icypeas.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "properties": {
      "id": {
       "type": "string",
       "minLength": 1
      },
      "file": {
       "type": "string",
       "minLength": 1
      },
      "mode": {
       "enum": [
        "single",
        "bulk"
       ],
       "type": "string"
      },
      "next": {
       "type": "boolean"
      },
      "type": {
       "type": "string",
       "minLength": 1
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "sorts": {
       "type": "array",
       "items": {}
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/icypeas-search-result-fetcher-b8e81e34/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
