# Revnuvo Domain Trust Assessment

> Revnuvo Domain Trust Assessment is a paid API for AI agents from resource.revnuvo.site, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Assesses a domain's trustworthiness via DNS lookup and signal analysis, returning a risk score, trust score, grade, and recommendation.

## Facts

- Endpoint: POST https://resource.revnuvo.site/domain/assess
- 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/revnuvo-domain-trust-assessment-c3223914
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4_rK3rkFpe1kXpp5rc57Q

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 revnuvo-domain-trust-assessment-c3223914 -d '<json body>'
```

Example prompt: Can you assess the trustworthiness of 'suspiciousdomain.xyz' and tell me if it's safe — give me the trust score, risk flags, and whether it's recommended as TRUSTED, REVIEW, or RISKY?

## When to prefer this

Choose this endpoint when you need a structured, scored trust assessment of a domain — including DNS signals, risk flags, and an actionable recommendation — rather than a simple WHOIS lookup or raw DNS query. Best suited for AI agents that need to make automated trust decisions about domains in workflows like payment authorization, vendor onboarding, or spam filtering.

## Known failure modes

- Invalid or malformed domain string returns a validation error
- Unknown or unresolvable domain may return low trust scores with DNS failure signals
- Network timeout during DNS resolution may result in partial signals
- Payment failure via x402 prevents the assessment from being returned

## How this service works

Domain verification, DNS lookup, and trust assessment for AI agents and developers. x402 USDC payments on Base.

## Output

Returns a JSON object with the assessed domain, an integer trust score (0–100), an integer risk score (0–100), a letter grade (A–F), an array of risk flag strings, a signals object with underlying DNS and reputation signals, a recommendation enum (TRUSTED, REVIEW, or RISKY), and an ISO 8601 timestamp of the assessment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "grade": {
   "enum": [
    "A",
    "B",
    "C",
    "D",
    "F"
   ],
   "type": "string"
  },
  "domain": {
   "type": "string"
  },
  "signals": {
   "type": "object"
  },
  "risk_flags": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "risk_score": {
   "type": "integer",
   "maximum": 100,
   "minimum": 0
  },
  "assessed_at": {
   "type": "string",
   "format": "date-time"
  },
  "trust_score": {
   "type": "integer",
   "maximum": 100,
   "minimum": 0
  },
  "recommendation": {
   "enum": [
    "TRUSTED",
    "REVIEW",
    "RISKY"
   ],
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/revnuvo-domain-trust-assessment-c3223914/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from resource.revnuvo.site](https://www.zero.xyz/host/resource.revnuvo.site/llms.txt)
