# TokenGuard Company Domain Brief

> TokenGuard Company Domain Brief is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a structured domain intelligence brief for a given company domain, including maturity, registrar, age, expiry, subdomain count, and certificate history.

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/brief/company
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-company-domain-brief-c5e080d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aApQJDmgbiGqtpSYCVtw4

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 tokenguard-company-domain-brief-c5e080d4 -d '<json body>'
```

Example prompt: Can you pull a domain brief for uniswap.org — I want to know how old the domain is, who registered it, how many subdomains it has, and when it expires?

## When to prefer this

Choose this endpoint when you need a quick, structured domain intelligence profile for due diligence, phishing detection, or trust assessment — particularly in crypto/DeFi research workflows where domain age and certificate history signal legitimacy. Prefer this over raw WHOIS lookups when you need a normalized, agent-ready JSON response with maturity scoring.

## Known failure modes

- Invalid or unresolvable domain returns empty or error response
- Newly registered domains may have limited data (low subdomain count, few certificates)
- Private/reserved domains (e.g. example.com) may return placeholder registrar data
- URL or email inputs are accepted but reduced to bare domain before lookup — malformed inputs may fail
- Rate limits or payment failures via x402 micropayment protocol may block the call

## How this service works

One-call company and domain profile from public records: RDAP registration (age, registrar, status, expiry, nameservers) plus certificate-transparency history for infrastructure footprint and subdomain discovery, resolved into a new / established / mature maturity read. Domain-based lead qualification and counterparty vetting without a proprietary data licence.

## Output

A JSON object with the domain's maturity classification (e.g. 'mature'), registrar name, domain age in days, days until expiry, number of subdomains detected, number of SSL/TLS certificates seen, and any advisory notes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Bare domain, e.g. example.com (URLs and emails are accepted and reduced to the domain)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "notes": [],
  "domain": "example.com",
  "maturity": "mature",
  "registrar": "RESERVED-Internet Assigned Numbers Authority",
  "domain_age_days": 10800,
  "expires_in_days": 240,
  "subdomain_count": 12,
  "certificates_seen": 8
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-company-domain-brief-c5e080d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
