# MoneyPilot — URL Trust & Overall Score Evaluator

> MoneyPilot — URL Trust & Overall Score Evaluator is a paid API for AI agents from moneypilot-c6f8c4.joedyermens.chatgpt.site, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a deterministic overall trust score (0–100) for a public HTTPS URL, including risk level, scam indicators, and sub-scores across reachability, onchain trust, webpage quality, and social sentiment.

## Facts

- Endpoint: GET https://moneypilot-c6f8c4.joedyermens.chatgpt.site/api/x402/get-overall-score
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moneypilot-url-trust-overall-score-evaluator-dcfc5084
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jBlxA40b374wr8tEWGoVN

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 moneypilot-url-trust-overall-score-evaluator-dcfc5084
```

Example prompt: Can you run a trust score check on https://example-defi.com/ and tell me the overall score, risk level, and any scam indicators flagged?

## When to prefer this

Choose this endpoint when you need a fast, deterministic, multi-dimensional trust score for any public HTTPS URL — especially when evaluating x402 payment endpoints, DeFi sites, or unfamiliar APIs before integrating or transacting. It combines reachability, webpage quality, onchain trust, and social signals into a single composite score, making it suitable for automated agent-side safety checks paid per-call in USDC.

## Known failure modes

- Invalid or non-HTTPS URL returns validation error
- Unreachable URL may result in null reachability sub-score
- Onchain or social sub-scores may be null if data is unavailable
- Payment failure (insufficient USDC balance) results in 402 response before evaluation
- Rate limiting or server error may return 5xx response

## How this service works

Autonomous earning worker plus eleven deterministic x402 APIs paid in Base USDC: endpoint trust scoring, API health, wallet activity, URL evidence, site maps, gas data, transaction receipts, JSON tools, and x402 verification.

## Output

A JSON object containing the evaluated URL, a boolean is_scam flag, a risk_level string (e.g. 'low', 'medium', 'high'), an overall_score integer (0–100), sub_scores for reachability, onchain_trust, webpage_quality, and social_sentiment, an array of scam_indicators, server_name, last_updated timestamp, and scoring_details including the methodology used.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "The public HTTPS resource URL to evaluate."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/",
  "is_scam": false,
  "risk_level": "low",
  "sub_scores": {
   "reachability": 100,
   "onchain_trust": null,
   "webpage_quality": 70,
   "social_sentiment": null
  },
  "server_name": null,
  "last_updated": "2026-01-01T00:00:00.000Z",
  "overall_score": 85,
  "scam_indicators": [],
  "scoring_details": {
   "methodology": "deterministic-http-evidence-v1"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moneypilot-url-trust-overall-score-evaluator-dcfc5084/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from moneypilot-c6f8c4.joedyermens.chatgpt.site](https://www.zero.xyz/host/moneypilot-c6f8c4.joedyermens.chatgpt.site/llms.txt)
