# LION Verified Company — Domain DNS & HTTPS Trust Enrichment

> LION Verified Company — Domain DNS & HTTPS Trust Enrichment is a paid API for AI agents from lionx402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Performs live DNS record lookups (MX, SPF, DMARC, A) and computes an HTTPS trust score for a given domain, returning email and web security posture data.

## Facts

- Endpoint: GET https://lionx402.com/api/x402/domain-enrich
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-verified-company-domain-dns-https-trust-enrichment-650fbb0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_biMMYDHfOfqHKdRPiv5cx

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 lion-verified-company-domain-dns-https-trust-enrichment-650fbb0d
```

Example prompt: Can you check the DNS and email security setup for stripe.com — I want to know if they have MX, SPF, and DMARC configured, and what their HTTPS trust score looks like?

## When to prefer this

Choose this endpoint when you need real-time, live DNS record lookups combined with an HTTPS trust score in a single low-cost call ($0.005 USDC). Prefer it over static WHOIS or passive databases when freshness matters — e.g. verifying current email security posture before sending or accepting communications. It is keyless and uses x402 micropayments, making it suitable for agent workflows without pre-registered credentials.

## Known failure modes

- Domain does not exist (NXDOMAIN) — may return empty records or error
- DNS lookup timeout for slow or unresponsive nameservers
- Domain missing MX/SPF/DMARC — returns absent fields rather than failing
- Invalid domain format in query parameter — returns validation error
- Payment not processed / x402 challenge not satisfied — returns 402 status

## How this service works

Domain enrich for agents: live DNS (MX/SPF/DMARC/A) + HTTPS trust score. $0.005 keyless Base USDC. ?domain=stripe.com

## Output

Returns live DNS record data including MX records (mail servers), SPF TXT record, DMARC policy record, and A records, along with a computed HTTPS trust score indicating the domain's web security posture. Response is cryptographically attested via Ed25519 signature per LION's architecture.

## 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",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain e.g. stripe.com"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "service": "LION Verified Company",
  "asset_id": "LION",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-verified-company-domain-dns-https-trust-enrichment-650fbb0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lionx402.com](https://www.zero.xyz/host/lionx402.com/llms.txt)
