# Hermes Company Domain Intelligence

> Hermes Company Domain Intelligence is a paid API for AI agents from hermes-counterparty-api.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Enriches a company domain name with DNS, WHOIS/RDAP, website reachability, email security, and company identity metadata

## Facts

- Endpoint: POST https://hermes-counterparty-api.onrender.com/v1/company-domain-intelligence
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hermes-company-domain-intelligence-257eda98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sH3NzudeLysIhVdlEGUzC

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 hermes-company-domain-intelligence-257eda98 -d '<json body>'
```

Example prompt: Can you look up stripe.com and tell me the company name behind it, whether their website is live, and if they have email security like SPF and DMARC set up?

## When to prefer this

Choose this endpoint when you need a broad, multi-dimensional snapshot of a company domain in a single call — combining DNS health, email security posture, website reachability, and company identity resolution. It is especially suited for counterparty due diligence, B2B lead enrichment, and supplier onboarding workflows where you need more than just a WHOIS lookup. The free preview tier allows lightweight checks before committing the $0.02 paid enrichment call.

## Known failure modes

- Invalid or malformed domain returns a validation error
- Unreachable domains may return reachable:false with no website metadata
- RDAP lookups may fail for some TLDs, returning null registration fields
- DNS resolution may fail for newly registered or expired domains
- Payment not received results in HTTP 402 before enrichment data is returned

## How this service works

Agent utilities for company research, package maintenance intelligence, dependency vulnerability checks, counterparty availability, SEC company snapshots, OFAC sanctions screening, and deterministic JSON/CSV data-quality work. Company domain intelligence includes a free preview before the paid enrichment call.

## Output

Returns a structured JSON object containing: DNS records (A/AAAA addresses), mail infrastructure (MX records, SPF/DMARC presence), domain registration details (registrar, age, nameservers, expiration), company identity (display name, confidence score, source), website reachability (status code, final URL, redirect chain, social and contact links), and security posture (HSTS, CSP). Also includes warnings and schema version.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "maxLength": 253,
   "minLength": 1,
   "description": "Public company domain name, for example stripe.com"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dns": {
   "has_a": true,
   "has_aaaa": false,
   "addresses": [],
   "ipv6_addresses": []
  },
  "mail": {
   "mx": [],
   "has_mx": true,
   "spf_present": true,
   "dmarc_present": true
  },
  "query": {
   "domain": "stripe.com",
   "normalized_domain": "stripe.com"
  },
  "domain": {
   "age_days": null,
   "statuses": [],
   "registrar": null,
   "registered": true,
   "nameservers": [],
   "expiration_date": null,
   "registration_date": null
  },
  "company": {
   "source": "og:site_name",
   "confidence": "high",
   "display_name": "Stripe"
  },
  "sources": {
   "dns": "system-resolver",
   "rdap": "https://rdap.org/domain/stripe.com",
   "website": "https://stripe.com/"
  },
  "website": {
   "https": true,
   "title": null,
   "final_url": "https://stripe.com/",
   "reachable": true,
   "description": null,
   "status_code": 200,
   "social_links": [],
   "canonical_url": null,
   "contact_links": [],
   "redirect_chain": []
  },
  "security": {
   "hsts": true,
   "content_security_policy": true
  },
  "warnings": [],
  "schema_version": "1.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hermes-company-domain-intelligence-257eda98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hermes-counterparty-api.onrender.com](https://www.zero.xyz/host/hermes-counterparty-api.onrender.com/llms.txt)
