# Company Domain Intelligence Aggregator

> Company Domain Intelligence Aggregator is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Aggregates RDAP registration data, DNS records, live website status, and Wikipedia company summary for any domain in a single API call.

## Facts

- Endpoint: GET https://api.x402node.dev/finance/company
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/company-domain-intelligence-aggregator-095a1974
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tBidUYucIz1ijfM194Zb1

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 company-domain-intelligence-aggregator-095a1974
```

Example prompt: Can you pull up all the domain intelligence on stripe.com — I need the registration age, registrar, DNS and mail provider info, whether their site is live, and a quick Wikipedia summary of the company?

## When to prefer this

Use this endpoint when you need a comprehensive, all-in-one company profile from just a domain name — covering registration, DNS, web presence, and company background — without making multiple separate API calls to WHOIS, DNS resolvers, and Wikipedia separately. Ideal for lead enrichment pipelines, due diligence workflows, and AI agents researching companies.

## Known failure modes

- Domain not found in RDAP — returns partial or empty registration data
- Wikipedia article not found for domain — returns empty or generic summary; use the wiki parameter with exact article title to fix
- Domain has no live website — website check returns non-200 status or timeout
- Invalid domain format passed — returns 400 error
- DNS lookup failure for domain — DNS fields may be null or incomplete
- Rate limiting or payment failure — returns 402 or 429 error

## How this service works

x402node — precise, deterministic developer and data tools for AI agents. Chain data, parsing, crypto, conversion. Pay-per-call over x402, settled in USDC on Base.

## Output

Returns a JSON object with RDAP registration details (domain age, registrar, expiry), DNS info (MX/email records, A-records, nameservers, mail-provider guess), live website check results (HTTP status, server header), and a Wikipedia-sourced company summary.

## 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": {
      "wiki": {
       "type": "string",
       "description": "Optional. Exact Wikipedia article title for a better company-summary match, e.g. 'Stripe, Inc.'. Defaults to the domain name. Alias: name."
      },
      "domain": {
       "type": "string",
       "description": "Company domain to look up, e.g. stripe.com. A leading http(s):// and www. are accepted. Alias: d."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/company-domain-intelligence-aggregator-095a1974/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
