# Bulk Email Address Validator

> Bulk Email Address Validator is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Validates up to 20 email addresses in a single concurrent batch call, returning per-item validation results in input order with failure counts.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/validate-email
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bulk-email-address-validator-74bbe7db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vh1STwEBvo9bEBvuZvzfr

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 bulk-email-address-validator-74bbe7db
```

Example prompt: I have a list of 15 email addresses from our sign-up form — can you validate all of them at once and tell me which ones are invalid or failing, along with a total count of bad ones?

## When to prefer this

Choose this endpoint when you need to validate multiple email addresses at once (up to 20) and want results back in a single call rather than making 20 sequential requests. It is more efficient and cost-effective than calling the single /validate-email endpoint repeatedly. Ideal for batch processing sign-up forms, mailing list hygiene, or CRM data audits where you have a known list of addresses to check concurrently.

## Known failure modes

- Batch exceeds 20 items — only up to 20 emails are accepted per call
- Malformed input list or missing required query parameters returns an error
- Individual item errors are captured per-item rather than failing the whole batch
- Network timeout if concurrent checks take too long
- Invalid input schema returns a 400-level error

## How this service works

Bulk validate email address: up to 20 emails in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /validate-email endpoint (Validate email address). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-item validation results matching the input order, each containing the validation outcome for that email address and an error field if the item failed. A summary count of total failures across the batch is also returned.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/bulk-email-address-validator-74bbe7db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
