# Company Domain Enrichment — Registration Age, MX Records & Wikipedia

> Company Domain Enrichment — Registration Age, MX Records & Wikipedia is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-13).

Looks up a company domain's registration age, DNS MX mail server records, and Wikipedia metadata given a domain name.

## Facts

- Endpoint: GET https://store.agentexchange.work/connect/enrich
- Price: $0.09/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-enrichment-registration-age-mx-records-wikipedia-5de438d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-e7MNwyNFnpb_EDCX32M5

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-enrichment-registration-age-mx-records-wikipedia-5de438d7
```

Example prompt: Can you look up domain registration age, MX mail servers, and Wikipedia info for stripe.com?

## When to prefer this

Use this endpoint when you need a quick, multi-signal enrichment of a company domain combining registration age (trust/legitimacy signal), mail infrastructure (MX records), and Wikipedia presence in a single call. Prefer this over manual WHOIS or Wikipedia lookups when building automated due-diligence, lead scoring, or company research pipelines for AI agents.

## Known failure modes

- Domain not found or unregistered — empty or null company_profile returned
- Domain has no MX records — MX field empty in response
- No Wikipedia entry exists for the domain's company — Wikipedia fields absent
- Invalid or malformed domain input — error response
- Payment not processed (x402 protocol failure) — 402 response before data is returned

## How this service works

Lookup company domain registration age, DNS MX mail servers, and Wikipedia metadata.

## Output

Returns a structured company profile including the domain's registration age, its DNS MX mail server records, and any available Wikipedia metadata, along with diagnostics and an enrichment timestamp.

## 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": "Company domain name to enrich (required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "domain": {
       "type": "string"
      },
      "diagnostics": {
       "type": "object"
      },
      "enriched_at": {
       "type": "number"
      },
      "company_profile": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/company-domain-enrichment-registration-age-mx-records-wikipedia-5de438d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
