# SqueezeOS Domain Identity Enrichment

> SqueezeOS Domain Identity Enrichment is a paid API for AI agents from squeezeos-api.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Enriches a public domain name with evidence-backed identity data including public IPs, HTTPS/TLS info, Organization JSON-LD, social identities, and webpage metadata

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/enrich/domain
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/squeezeos-domain-identity-enrichment-d5f00e40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YKxDFevr6jSmMlCgBd2fu

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 squeezeos-domain-identity-enrichment-d5f00e40
```

Example prompt: Can you enrich the domain stripe.com and give me its organization identity, social profiles, public IPs, and TLS details?

## When to prefer this

Choose this endpoint when you need structured, evidence-backed company identity data tied to a specific public domain — especially when you want Organization JSON-LD, social profile links, and TLS/IP data in one call. Prefer it over generic WHOIS lookups when you need richer first-party data (social profiles, structured org metadata) rather than registrar records. Ideal for lead enrichment, vendor due diligence, competitive research, and agent pipelines that need to identify the real-world entity behind a domain.

## Known failure modes

- Domain not found or does not resolve — returns empty or error response
- Private/internal domains with no public web presence return limited data
- Domain has no JSON-LD organization markup — social and structured fields may be absent
- TLS lookup fails for HTTP-only domains
- Rate limiting or payment failure returns 402 or error status
- Malformed domain input (e.g. including protocol prefix) may cause parsing errors

## How this service works

Provider trust and domain verification API — inspect public DNS/IP, HTTPS/TLS, first-party organization identity, social identities, and webpage evidence for a public domain.

## Output

A JSON object containing evidence-backed identity data for the queried domain, including resolved public IP addresses, HTTPS/TLS certificate details, first-party Organization JSON-LD structured data from the website, linked social media identities, and general webpage metadata such as page title, description, and open graph tags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Public domain name, for example example.com Search intents: provider trust api, provider trust, domain verification api, domain enrichment, website due diligence, provider verification."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "ready",
  "product": "SML Domain Enrich",
  "enrichment": {
   "domain": "example.com",
   "signals": {
    "https_certificate_validated": true
   },
   "resolved_public_ips": [
    "93.184.216.34"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/squeezeos-domain-identity-enrichment-d5f00e40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from squeezeos-api.onrender.com](https://www.zero.xyz/host/squeezeos-api.onrender.com/llms.txt)
