# Strale Domain Age Check

> Strale Domain Age Check is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0324/call, status unknown (last checked 2026-09-15).

Returns the registration age and creation date of a domain name to assess its trustworthiness and history.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/domain-age-check
- Price: $0.0324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-domain-age-check-ed272924
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v6nnGPxjW6SyAKLyPPOma

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 strale-domain-age-check-ed272924
```

Example prompt: Can you check how old the domain phishing-site.com is? I want to know when it was registered to see if it's suspicious.

## When to prefer this

Choose this endpoint when you need a fast, auditable domain age check with cryptographic proof of result integrity — especially useful in fraud detection, phishing analysis, or vendor due diligence workflows where trust verification matters. Prefer this over raw WHOIS tools when you need a clean structured output with an audit trail rather than raw WHOIS text.

## Known failure modes

- Domain not found in WHOIS records — returns an error or null age
- Private/redacted WHOIS registration may limit available data
- Invalid domain format input returns a validation error
- WHOIS lookup timeout for certain TLDs with slow registrars
- Newly registered domains with propagation delays may return incomplete data

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns the age of the domain (typically in days/years since registration), the original creation/registration date, and a cryptographically hashed audit record confirming the integrity of the response. May include expiry date and last-updated timestamp depending on WHOIS availability.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name to check (e.g., google.com)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-domain-age-check-ed272924/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
