# Oromi Domain Agent-Readiness Audit

> Oromi Domain Agent-Readiness Audit is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks whether a domain is established and agent-ready by inspecting DNS resolution, HTTPS status, and domain age.

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/verify/domain
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-domain-agent-readiness-audit-f73da1ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vLzx6L0KvXo5bbpfzRvj9

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 oromi-domain-agent-readiness-audit-f73da1ac
```

Example prompt: Can you check whether acmecorp.co.uk is a real, established domain — I want to know if it resolves, has HTTPS, and how old it is before I proceed?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.01 USDC) programmatic signal on whether a domain is real, live, and established — particularly useful for agent workflows doing due diligence on vendors, counterparties, or inbound contacts before taking action. Prefer this over manual WHOIS lookups or general web-search checks when you need structured, machine-readable output with a clear verdict.

## Known failure modes

- Domain does not exist or fails DNS lookup — may return verdict indicating unresolved or invalid domain
- Domain provided with protocol prefix (e.g. https://) instead of bare domain — input validation error
- Network timeout reaching the domain — may return partial signals
- Newly registered domain returns low age_days and potentially a non-established verdict

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object containing a signals block with domain age in days, whether HTTPS is active, and whether DNS resolves, plus a top-level verdict string (e.g. 'established') summarising the overall trustworthiness of the domain.

## 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": "Domain to check, no protocol"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signals": {
   "age_days": 4300,
   "https_ok": true,
   "dns_resolves": true
  },
  "verdict": "established"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-domain-agent-readiness-audit-f73da1ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
