# Role Address Check

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

Detects whether an email address is a generic role-based mailbox (e.g. info@, support@, sales@) rather than a personal address, and returns the role category and likelihood of being personal.

## Facts

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

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-3aaa0eda
```

Example prompt: Can you check whether info@acme.com is a generic role mailbox or a real person's address, and tell me what category it falls under?

## When to prefer this

Use this endpoint when you need to distinguish individual contacts from shared department inboxes before running outreach campaigns, importing leads into a CRM, or personalizing communication. It is purpose-built for role-address classification with category labels (support, sales, legal, no-reply) rather than general email syntax or deliverability validation, making it superior for contact-quality filtering over generic email verification tools.

## Known failure modes

- Missing or malformed email address query parameter — returns validation error
- Non-existent or unreachable domain — may reduce confidence in personal/role classification
- Ambiguous email prefixes that don't match common role patterns — may default to non-role classification
- Payment not provided or insufficient — returns 402 Payment Required

## How this service works

Role-address detection: is an email a generic mailbox (info@, support@, sales@, billing@, admin@, noreply@...) rather than a person? Returns the role, its category (support, sales, technical, legal, no-reply) and whether it is likely a personal address. CRM hygiene and outreach targeting. $0.01 per address.

## Output

Returns whether the email is a role-based address, its category (support, sales, technical, legal, no-reply, etc.), and a flag indicating whether the address is likely personal rather than a shared mailbox.

## 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-3aaa0eda/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)
