# x402.fuchss.app — Watch Endpoint 30-Day Monitoring

> x402.fuchss.app — Watch Endpoint 30-Day Monitoring is a paid API for AI agents from x402.fuchss.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Registers a 30-day continuous monitoring watch on a specified x402 endpoint, delivering uptime, compliance, and settlement alerts via webhook or Slack.

## Facts

- Endpoint: POST https://x402.fuchss.app/v1/watch-endpoint-30d
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-fuchss-app-watch-endpoint-30-day-monitoring-f198c45b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yWIf0ZjWYapvsfrR0IBlW

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-fuchss-app-watch-endpoint-30-day-monitoring-f198c45b -d '<json body>'
```

Example prompt: Start watching https://api.example.com/v1/thing on x402.fuchss.app for the next 30 days — send uptime and compliance alerts to my webhook at https://hooks.myapp.com/notify and my Slack at https://hooks.slack.com/services/abc/xyz, and flag it if 3 or more consecutive probes fail.

## When to prefer this

Use this endpoint when you need 30-day continuous automated monitoring of a specific x402-protocol endpoint with proactive alerting via webhook or Slack, rather than one-off trust score lookups or leaderboard checks.

## Known failure modes

- Invalid or unreachable endpoint URL returns a 4xx error
- Missing required delivery fields (webhook_urls or slack_url) causes validation failure
- Expired or invalid x402 payment token results in 402 rejection
- Malformed webhook URL causes delivery registration to fail
- Watch limit exceeded for account returns resource conflict error

## How this service works

Trust, reputation & reliability scores for x402 endpoints. We monitor every listed x402 service 24/7: uptime probes, 402-envelope compliance, price history, and real on-chain USDC settlement volume. Free grade & recommendation for any endpoint, $0.005 for a full data breakdown.

## Output

Returns a watch ID, a one-time secret key (must be stored immediately), a poll URL for event history, the monitored endpoint ID, probe interval (300 seconds), and an expiry timestamp for the 30-day watch window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "events": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "delivery": {
   "type": "object",
   "required": [
    "webhook_urls",
    "slack_url"
   ],
   "properties": {
    "slack_url": {
     "type": "string"
    },
    "webhook_urls": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  },
  "endpoint": {
   "type": "string"
  },
  "liveness_sensitivity_n": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "secret": "wsk_… (shown once — store it now)",
  "watched": [
   {
    "resource": "https://api.example.com/v1/thing",
    "endpoint_id": 123
   }
  ],
  "delivery": {
   "poll": true,
   "slack": [],
   "webhook": [
    "https://your-app.example.com/x402-alerts"
   ]
  },
  "edit_url": "/v1/watch/01J8Z9K7X4QmY9example",
  "poll_url": "/v1/watch/01J8Z9K7X4QmY9example/events",
  "watch_id": "01J8Z9K7X4Qmy9example",
  "renew_url": "/v1/watch/01J8Z9K7X4QmY9example/renew",
  "cancel_url": "/v1/watch/01J8Z9K7X4QmY9example",
  "expires_at": 1751328000000,
  "next_steps": [
   {
    "step": 1,
    "action": "store_secret",
    "details": "Store `secret` in a secrets manager. It is shown only once; we only store its SHA-256 hash."
   },
   {
    "url": "/v1/watch/01J8Z9K7X4QmY9example/events",
    "step": 2,
    "action": "poll_events",
    "method": "GET",
    "details": "Read the append-only event log. Nothing that happened between two polls is lost.",
    "headers": {
     "Authorization": "Bearer wsk_…"
    },
    "cursor_hint": "Start without `since`; then use the highest returned `event_id` as the next `since` value.",
    "cursor_param": "since"
   },
   {
    "step": 3,
    "action": "verify_webhook",
    "details": "If you configured webhook_url(s), verify every incoming POST: the `x-signature` header must equal `sha256=` + HMAC-SHA256(body) keyed by hex(sha256(secret)) (NOT the raw secret). A `connection_test` ping is sent during setup — see delivery.connection_test.",
    "enabled": true
   },
   {
    "url": "/v1/watch/01J8Z9K7X4QmY9example",
    "step": 4,
    "action": "edit",
    "method": "PATCH",
    "details": "Change webhook/Slack URLs, liveness sensitivity, or subscribed events for free. PATCH with Authorization: Bearer <secret>; new URLs are connection-tested.",
    "headers": {
     "Authorization": "Bearer wsk_…"
    }
   },
   {
    "url": "/v1/watch/01J8Z9K7X4QmY9example",
    "step": 5,
    "action": "cancel",
    "method": "DELETE",
    "details": "Stop monitoring early (probing drops to normal cadence immediately). Free, bearer-authed.",
    "headers": {
     "Authorization": "Bearer wsk_…"
    }
   },
   {
    "url": "/v1/watch/01J8Z9K7X4QmY9example/renew",
    "step": 6,
    "action": "renew",
    "method": "POST",
    "details": "Extend the watch by 30 days before expires_at. The secret stays the same."
   }
  ],
  "subscribed_events": "all",
  "probe_interval_sec": 300,
  "liveness_sensitivity_n": 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-fuchss-app-watch-endpoint-30-day-monitoring-f198c45b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.fuchss.app](https://www.zero.xyz/host/x402.fuchss.app/llms.txt)
