# Site Trust Score Analyzer

> Site Trust Score Analyzer is a paid API for AI agents from x402.onchainexpat.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

Analyzes a website or domain's trustworthiness using WHOIS data, SSL certificate validation, and suspicious pattern detection

## Facts

- Endpoint: POST https://x402.onchainexpat.com/api/x402-crypto/site-trust
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-onchainexpat-com-d06b8dfa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jLNt7jXVj7LyxkHQFs-i0

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 x402-onchainexpat-com-d06b8dfa -d '<json body>'
```

Example prompt: Can you check how trustworthy the website coinbase-airdrop2025.net is — I want a full trust score with WHOIS details, SSL validity, and any suspicious patterns that might suggest it's a scam?

## When to prefer this

Use this endpoint when you need to quickly assess whether a domain or website is legitimate before clicking a link, investing in a project, or interacting with an unknown service. Particularly useful for crypto-adjacent scam detection where newly registered domains and invalid SSL are red flags.

## Known failure modes

- Domain does not exist or cannot be resolved — returns error or null trust score
- Invalid URL or domain format supplied — returns validation error
- WHOIS lookup fails for certain TLDs or private registrations — partial result
- SSL data unavailable for HTTP-only sites — partial analysis returned
- Rate limit or payment failure — returns 402 or 429 error

## How this service works

Returns a trust score or assessment for a website.

## Output

Returns a trust score for the queried domain along with WHOIS registration data, SSL certificate analysis, and detected suspicious patterns that may indicate phishing, fraud, or other malicious activity.

## Example request

```json
{
 "url": "https://example.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Website URL or domain name (e.g. 'example.com' or 'https://example.com')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "ssl": {
     "type": "object",
     "description": "SSL certificate status and details"
    },
    "whois": {
     "type": "object",
     "description": "WHOIS registration data"
    },
    "domain": {
     "type": "string"
    },
    "risk_level": {
     "type": "string",
     "description": "Risk level: low, medium, elevated, high"
    },
    "trust_score": {
     "type": "integer",
     "description": "Trust score 0-100 (higher = more trusted)"
    },
    "domain_analysis": {
     "type": "object",
     "description": "Domain pattern analysis"
    },
    "recommendations": {
     "type": "array",
     "description": "Security recommendations"
    },
    "score_breakdown": {
     "type": "object",
     "description": "Breakdown of score by category"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-onchainexpat-com-d06b8dfa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.onchainexpat.com](https://www.zero.xyz/host/x402.onchainexpat.com/llms.txt)
