# Domain & Company Enrichment (DNS + GLEIF LEI + OFAC + Web Snapshot)

> Domain & Company Enrichment (DNS + GLEIF LEI + OFAC + Web Snapshot) is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Returns a one-call enrichment bundle for a domain or company name: DNS A records, certificate transparency subdomains, GLEIF LEI data, OFAC SDN sanctions matches, web page title, and an aggregate risk summary.

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/enrich
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-company-enrichment-dns-gleif-lei-ofac-web-snapshot-9cf73b5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RvVe6ZR-S-_-7RMZN3fK4

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 domain-company-enrichment-dns-gleif-lei-ofac-web-snapshot-9cf73b5b
```

Example prompt: Can you run a full enrichment on acme.com — I need DNS A records, any certificate transparency subdomains, their GLEIF LEI, OFAC sanctions status, and a risk summary all in one shot?

## When to prefer this

Use this endpoint when you need a single-call enrichment combining DNS infrastructure data, certificate transparency intelligence, GLEIF legal entity identification, OFAC sanctions screening, and a live web snapshot for a domain or company. It is superior to calling each data source individually and is ideal for compliance workflows, vendor onboarding, or counterparty due diligence where speed and breadth matter more than deep drill-down into any single source.

## Known failure modes

- Domain not resolvable: DNS lookup returns empty or error
- Company name too ambiguous: GLEIF returns no match or multiple conflicting matches
- OFAC or GLEIF services unavailable: partial result returned with null for that field
- Rate limiting or payment failure (x402): 402 response requiring USDC payment
- Invalid input: neither domain nor name query parameter provided
- Web snapshot timeout: web_title may be null if the target site is slow or unreachable

## How this service works

One-call domain/company enrichment: DNS A records + certificate transparency names + GLEIF LEI + OFAC SDN + web snapshot, with an aggregate risk_summary. ?domain=acme.com or ?name=Acme

## Output

A JSON object containing: the resolved domain name, DNS A records as an object, an array of certificate transparency subdomain names, GLEIF LEI data (or null if not found), the count of OFAC SDN sanctions matches, the web page title from a live snapshot, and an aggregate risk_summary field synthesizing the findings.

## 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",
     "properties": {
      "name": {
       "type": "string"
      },
      "domain": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "dns": {
     "type": "object"
    },
    "lei": {},
    "domain": {
     "type": "string"
    },
    "web_title": {
     "type": "string"
    },
    "ct_subdomains": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "sanctions_matches": {
     "type": "integer"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domain-company-enrichment-dns-gleif-lei-ofac-web-snapshot-9cf73b5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
