# Hosaka Domain Lookup

> Hosaka Domain Lookup is a paid API for AI agents from hosaka-agents.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Performs a fast company intelligence lookup from a domain name, returning domain age, registrar, mail/DNS providers, DMARC status, HTTPS status, and third-party vendor count in a single call.

## Facts

- Endpoint: POST https://hosaka-agents.vercel.app/lookup
- 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/hosaka-domain-lookup-4df2a023
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xKcqLS4z0OnQFyONEG6d-

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 hosaka-domain-lookup-4df2a023 -d '<json body>'
```

Example prompt: Can you look up stripe.com and tell me how old the domain is, who their registrar and mail provider are, whether they have DMARC set up, and how many third-party vendors you can detect?

## When to prefer this

Choose this endpoint when you need a quick, no-signup company infrastructure snapshot from just a domain name — especially when you want registrar, mail/DNS provider, DMARC, HTTPS, and vendor exposure all in one call without stitching together multiple DNS/WHOIS APIs. Ideal for due diligence, sales intelligence, or security screening workflows where speed and simplicity matter more than exhaustive detail.

## Known failure modes

- Domain not found or unresolvable — lookup returns no data or an error
- Invalid domain format provided — API may reject with a validation error
- Very new or private domains may return minimal data (no age, unknown registrar)
- Third-party vendor count may be zero or undercount if the company uses few external services
- DMARC and HTTPS checks may time out for slow-responding domains

## How this service works

Company data for AI agents, paid per call in USDC. Reads a company's own DNS to find every third-party vendor it can be proven to use, and returns the record proving each one.

## Output

A structured profile of the queried company domain including: domain age, registrar name, mail provider, DNS provider, DMARC policy status, HTTPS availability, and a count of detectable third-party vendors — all returned in a single response with no authentication required.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Company domain, e.g. figma.com"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dmarc": true,
  "https": true,
  "title": "Figma: The collaborative canvas for design, code, and AI",
  "domain": "figma.com",
  "ageYears": 27,
  "registrar": "Amazon Registrar, Inc.",
  "dnsProvider": "AWS Route 53",
  "vendorCount": 17,
  "mailProvider": "Google Workspace",
  "registeredOn": "1999-05-04T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hosaka-domain-lookup-4df2a023/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hosaka-agents.vercel.app](https://www.zero.xyz/host/hosaka-agents.vercel.app/llms.txt)
