# BIMI Record Check

> BIMI Record 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).

Checks whether a domain has a valid BIMI DNS record at default._bimi, returning the SVG logo URL and VMC certificate URL for email branding readiness.

## Facts

- Endpoint: GET https://intel.rallylive.ca/email/bimi
- 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/bimi-record-check-42f3eb8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__5sDrwDFUbPHkHQd5DQiU

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-check-42f3eb8c
```

Example prompt: Can you check if apple.com has a BIMI record set up — I want to know if they have an SVG logo URL and a VMC certificate configured at default._bimi?

## When to prefer this

Use this endpoint when you need a quick, low-cost DNS lookup to verify BIMI email branding configuration for any domain. Prefer it over manual DNS tools when automating email audit pipelines, benchmarking competitor email setups, or checking brand readiness at scale. It is ideal for agents performing email infrastructure checks without needing a full email authentication suite.

## Known failure modes

- Domain has no BIMI record at default._bimi — record existence returned as false with no URLs
- Invalid or malformed domain name input — likely returns an error or empty result
- DNS resolution failure for the domain — may return an error or timeout
- Domain exists but BIMI record is misconfigured — may return partial data (e.g. logo URL but no VMC)
- Payment failure via x402 protocol — request not processed

## How this service works

BIMI record check for a domain: whether a Brand Indicators for Message Identification record exists at default._bimi, the SVG logo URL and the VMC certificate URL. Email branding readiness check. $0.01 per domain.

## Output

Returns whether a BIMI DNS record exists at default._bimi for the queried domain, along with the SVG logo URL (if present) and the VMC (Verified Mark Certificate) certificate URL (if present), indicating the domain's email brand indicator readiness.

## 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-check-42f3eb8c/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)
