# role-address-check-bulk

> role-address-check-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).

Checks up to 20 email addresses in a single call to determine whether each is a role-based address (e.g. info@, support@, noreply@), returning ordered results with per-item errors and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/email/role
- 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/role-address-check-bulk-d2a1279f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZX6i4CHIyK30a5xxexaz5

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 role-address-check-bulk-d2a1279f
```

Example prompt: Can you check this batch of emails for me and tell me which ones are role addresses like info@, support@, or noreply@? Here are 15 addresses from our CRM export: info@acme.com, john.doe@acme.com, support@beta.io, ceo@gamma.co, hello@delta.net, sales@epsilon.org, alice@zeta.com, admin@eta.io, billing@theta.co, team@iota.net, me@kappa.com, contact@lambda.io, dev@mu.org, jane@nu.co, orders@xi.net.

## When to prefer this

Use this endpoint when you have multiple emails (2–20) to check for role-address status in a single operation. It processes items concurrently and returns results in input order, making it far more efficient than calling the single /email/role endpoint repeatedly. Prefer this over the single endpoint whenever you're enriching a list, cleaning a CRM export, or filtering a batch of leads before outreach.

## Known failure modes

- Input list exceeds 20 emails — request rejected or truncated
- Malformed email addresses cause per-item errors rather than full batch failure
- Empty input list returns a validation error
- Network timeout during concurrent processing may result in partial failures surfaced via per-item error fields
- Payment failure (x402) blocks the entire batch call

## How this service works

Bulk role address check: 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/role endpoint (Role-address detection). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results (one entry per input email) each containing whether the address is a role-based address (true/false), a per-item error field if processing failed, plus an overall count of how many items failed in the batch.

## 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/role-address-check-bulk-d2a1279f/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)
