# Domain Age & Maturity Checker

> Domain Age & Maturity Checker is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Determines a domain's age from WHOIS registration data and Wayback Machine archival history, returning creation date, age in years, archive stats, and a maturity signal for fraud/phishing detection.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/domain-age/check
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-age-maturity-checker-5fe28e37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Kh4uVAo3qUSUfCf0sTDGZ

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-age-maturity-checker-5fe28e37
```

Example prompt: Can you check how old the domain suspicioussite.com is — I want to know when it was registered, how mature it is, and whether it looks like a freshly minted phishing domain?

## When to prefer this

Use this endpoint when you need to assess the trustworthiness or legitimacy of a domain by its age and archival footprint — especially for fraud detection, phishing link analysis, vendor vetting, or any workflow where a newly registered domain is a red flag. Prefer this over generic WHOIS lookups when you need the combined registration + archive history + maturity signal in one call.

## Known failure modes

- Domain not found in WHOIS or RDAP — returns null dates with a low score
- Unregistered domain — may return no creation date
- Rate limiting on upstream WHOIS/archive services — may return partial data
- Invalid domain format — returns validation error
- Very new domain with no archive history — archive fields return null

## How this service works

Determine a domain's age from registration data and archival history — returns creation date, age in years, first Wayback Machine capture, total archived snapshots, and a maturity signal so agents can assess domain trustworthiness and detect freshly registered domains used for fraud or phishing.

## Output

Returns a JSON object with: the domain name, ISO creation date (created_at), age in days and years, the first Wayback Machine capture timestamp (first_archived_at), estimated total archived snapshots (archive_snapshot_estimate), the number of days between registration and first archive (registration_to_archive_gap_days), the data source used (age_source), a maturity label (e.g. 'established', 'new'), a trust grade letter, a numeric trust score, and an array of findings/flags.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "example.com"
  }
 }
}
```

## 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 name to assess (e.g. example.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "domain": {
       "type": "string"
      },
      "age_days": {
       "type": [
        "number",
        "null"
       ]
      },
      "findings": {
       "type": "array"
      },
      "maturity": {
       "type": "string"
      },
      "age_years": {
       "type": [
        "number",
        "null"
       ]
      },
      "age_source": {
       "type": [
        "string",
        "null"
       ],
       "description": "rdap | whois | wayback_estimate | null (undetermined)"
      },
      "created_at": {
       "type": [
        "string",
        "null"
       ]
      },
      "first_archived_at": {
       "type": [
        "string",
        "null"
       ]
      },
      "archive_snapshot_estimate": {
       "type": [
        "number",
        "null"
       ]
      },
      "registration_to_archive_gap_days": {
       "type": [
        "number",
        "null"
       ]
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "A",
  "score": 100,
  "domain": "example.com",
  "age_days": 11260,
  "findings": [],
  "maturity": "established",
  "age_years": 30.8,
  "age_source": "rdap",
  "created_at": "1995-08-14T04:00:00Z",
  "first_archived_at": "1996-12-02T00:00:00Z",
  "archive_snapshot_estimate": 5400,
  "registration_to_archive_gap_days": 476
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domain-age-maturity-checker-5fe28e37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
