# Email Domain Intel Bulk

> Email Domain Intel Bulk 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).

Enriches up to 20 email addresses in one concurrent batch call, returning company/domain intelligence for each email in input order with per-item error handling.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/email/domain-from-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/email-domain-intel-bulk-ef90af06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qgaQmsIWBcNPVdDWcNr-d

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 email-domain-intel-bulk-ef90af06
```

Example prompt: I have a list of 15 prospect emails — alice@acme.com, bob@stripe.com, carol@notion.so, and 12 more — can you batch look up the company domain intelligence for all of them at once and tell me which ones failed?

## When to prefer this

Use this endpoint when you have 2–20 email addresses that all need company domain intelligence resolved in a single API call. It is more efficient and cost-effective than calling the single /email/domain-from-email endpoint repeatedly, as all items are processed concurrently and results are returned in input order. Choose this over the single endpoint whenever you're enriching a list, processing CRM exports, or qualifying batches of leads in an automated pipeline.

## Known failure modes

- Batch exceeds 20 emails — request rejected or truncated
- Malformed email addresses cause per-item errors without failing the whole batch
- Unknown or unresolvable domains return a per-item error with null company data
- Network timeout for concurrent sub-requests may increase per-item failure count
- Missing required 'input' query parameter returns a 400-level error

## How this service works

Bulk email domain intel: 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 /email/domain-from-email endpoint (From an email address to its company). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of domain intelligence results matching the input email list, where each item mirrors the single-email /email/domain-from-email response (company name, domain, and related metadata), plus a per-item error field indicating any lookup failures, and a top-level count of how many items failed.

## 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/email-domain-intel-bulk-ef90af06/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)
