# BIMI Record Bulk Checker

> BIMI Record Bulk Checker 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 BIMI DNS records for up to 20 domains in one concurrent call, returning per-domain results in input order with per-item error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/email/bimi
- 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/bimi-record-bulk-checker-f324bae3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TNcIwi5Nn5yABb9VxHi8q

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 bimi-record-bulk-checker-f324bae3
```

Example prompt: Can you check the BIMI records for these 15 domains all at once: example.com, acme.org, mybrand.net, techcorp.io, shopify.com, stripe.com, mailchimp.com, sendgrid.net, fastmail.com, protonmail.com, zoho.com, salesforce.com, hubspot.com, intercom.io, and zendesk.com? I want to know which ones have BIMI set up and flag any that are missing or broken.

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need BIMI record data for all of them in a single API call rather than making repeated single-domain lookups. It processes domains concurrently and preserves input order, making it ideal for batch audits, portfolio checks, or competitive scans where latency and cost efficiency matter. Prefer the single /email/bimi endpoint if you only need one domain checked at a time.

## Known failure modes

- Exceeding the 20-domain limit may result in an error or truncated results
- Domains with no BIMI record return a per-item error rather than empty record
- DNS resolution failures are captured per-item in the error field and counted in the failure total
- Malformed domain names in the input list will trigger per-item errors
- Payment failure (x402) if USDC balance is insufficient for the $0.10 per call cost

## How this service works

Bulk bimi record check: up to 20 domains 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/bimi endpoint (BIMI record check for a domain). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-domain results matching the input list, each containing the BIMI record data (or absence thereof) for that domain, a per-item error field indicating any lookup failure, and an overall count of how many domains failed to resolve. Successfully resolved items include the same data as the single /email/bimi endpoint.

## 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/bimi-record-bulk-checker-f324bae3/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)
