# Bulk Domain Trust Score

> Bulk Domain Trust Score 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).

Returns trust/legitimacy scores (0-100) with top reasons, domain age, mail presence, and HTTPS status for up to 10 domains in a single call at $0.01.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/domain-score
- 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-domain-trust-score-6925a461
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g45czyuPOP6zCkMfD2xzV

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-domain-trust-score-6925a461
```

Example prompt: Can you score these 10 domains for trustworthiness — apple.com, amaz0n.net, paypa1.co, trustwallet.io, coinbase.com, binance.com, krak3n.xyz, crypto-gifts.biz, ledger.com, metamask-support.net — and tell me which ones look suspicious based on their 0-100 legitimacy score, domain age, and whether they have mail and HTTPS set up?

## When to prefer this

Choose this endpoint when you need to evaluate multiple domains at once at minimal cost ($0.01 for up to 10). It is ideal for fraud screening pipelines, lead list hygiene, phishing triage, and any workflow where you need a quick legitimacy signal across a batch of domains rather than deep per-domain investigation. Prefer it over single-domain lookups when handling lists of 2-10 domains to save on per-call costs.

## Known failure modes

- More than 10 domains submitted — exceeds batch limit
- Missing or malformed domain input — returns validation error
- Payment failure or insufficient USDC balance — call rejected
- Domain not resolvable or not yet registered — partial results or null score
- Network timeout on domain lookups — incomplete batch response

## How this service works

Bulk domain trust score: up to 10 domains in one $0.01 call, each with the 0-100 established/legitimacy score, top reasons, domain age, mail and HTTPS presence. Rank or filter a list of domains for fraud screening and lead scoring at a tenth of the per-domain price.

## Output

For each submitted domain, the endpoint returns a 0-100 trust/legitimacy score, the top reasons influencing that score, the domain's age, whether mail records (MX) are present, and whether HTTPS is enabled. Results cover up to 10 domains per call.

## 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-domain-trust-score-6925a461/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)
