# Vaaya Icypeas Domain Role-Based Email Scan

> Vaaya Icypeas Domain Role-Based Email Scan is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

Initiates an async scan of a domain for generic role-based email addresses (contact@, support@, admin@, etc.) via Icypeas, returning a job ID to poll for results.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/icypeas/domain-scan
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaaya-icypeas-domain-role-based-email-scan-4468669c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xn5gdKkRZmefFBVimAv47

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 vaaya-icypeas-domain-role-based-email-scan-4468669c -d '<json body>'
```

Example prompt: Can you scan stripe.com and find all its role-based email addresses — things like contact@, support@, admin@, info@, and similar generic inboxes?

## When to prefer this

Use this endpoint when you need generic, role-based email addresses (contact@, support@, admin@, info@, billing@, etc.) for a domain — not individual named contacts. It complements person-level email finders like Tomba domain-search or Prospeo, which list specific employees. Choose this when you want operational or departmental inboxes for outreach, vendor contact, or security auditing purposes.

## Known failure modes

- Invalid or non-existent domain returns an empty result after processing
- Polling rate limit hit if result endpoint is called more than 30 times per minute
- Job may remain IN_PROGRESS for an extended period for large or slow domains
- Domain with no role-based emails returns NOT_FOUND/DEBITED_NOT_FOUND status
- Network timeout on initial POST before job ID is returned

## How this service works

Scan a domain for its ROLE-BASED email addresses via Icypeas (contact@, support@, admin@, …) — generic inboxes, not people. Pass `domainOrCompany`. Returns `{ item: { _id } }` immediately — the search runs async. KEEP POLLING icypeas/result with that `id` (every 3-5s; Icypeas caps reads at 30/min) until `status` leaves NONE/SCHEDULED/IN_PROGRESS. FOUND/DEBITED = hit, NOT_FOUND/DEBITED_NOT_FOUND = processed but empty. Complements tomba/domain-search (which lists PEOPLE at the company); use this …

## Output

Returns immediately with `{ item: { _id } }` containing a job ID. The actual scan runs asynchronously via Icypeas. The agent must poll the icypeas/result endpoint every 3-5 seconds with that ID until status is no longer NONE, SCHEDULED, or IN_PROGRESS. A FOUND/DEBITED status means role-based email addresses were discovered; NOT_FOUND/DEBITED_NOT_FOUND means the scan completed but returned no results.

## 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#",
     "required": [
      "domainOrCompany"
     ],
     "properties": {
      "custom": {
       "type": "object",
       "properties": {
        "externalId": {
         "type": "string",
         "maxLength": 200,
         "minLength": 1
        },
        "webhookUrl": {
         "type": "string",
         "format": "uri"
        }
       },
       "additionalProperties": false
      },
      "domainOrCompany": {
       "type": "string",
       "minLength": 2
      }
     },
     "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/vaaya-icypeas-domain-role-based-email-scan-4468669c/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)
