# MoneyPilot URL Evidence Checker

> MoneyPilot URL Evidence Checker 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-14).

Fetches a URL and returns evidence of its reachability, final redirect destination, HTTP status, and optional expected-text presence check.

## Facts

- Endpoint: GET https://moneypilot-c6f8c4.joedyermens.chatgpt.site/api/x402/url-evidence
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moneypilot-url-evidence-checker-27f416c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UCOF4Cqn7GIuAWdQBkf5j

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-evidence-checker-27f416c8
```

Example prompt: Can you check if https://example.com/landing-page is live, returns a 200 status, and contains the text 'Get started today'?

## When to prefer this

Use this endpoint when you need a deterministic, paid, server-side URL fetch to verify liveness, redirect chains, or content presence — especially in agentic workflows where client-side fetching is unavailable or untrusted. Prefer it over client-side checks when you need an authoritative third-party HTTP probe with a structured JSON evidence response.

## Known failure modes

- URL is unreachable or times out — ok:false returned
- URL returns a non-2xx status code — still reported but ok may be false
- expectedText not found on page — expectedTextFound:false
- Invalid URL format causes schema validation error
- Payment (x402 USDC) not provided or invalid — 402 response before execution

## 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

Returns a JSON object with ok:true/false, and an evidence object containing: finalUrl (URL after any redirects), httpStatus (HTTP response code), and expectedTextFound (boolean, if expectedText was supplied).

## 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"
      },
      "expectedText": {
       "type": "string",
       "maxLength": 500
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "evidence": {
   "finalUrl": "https://example.com/",
   "httpStatus": 200,
   "expectedTextFound": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moneypilot-url-evidence-checker-27f416c8/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)
