# SCVD General Store — Conformance Watch

> SCVD General Store — Conformance Watch is a paid API for AI agents from scvd.store, paid per call via x402, $5/call, status unknown (last checked 2026-09-15).

Purchases a 7-day x402 conformance monitoring subscription that runs one signed daily audit pass against a given x402 endpoint URL and returns a watch ID plus a permanent history URL

## Facts

- Endpoint: GET https://scvd.store/api/buy/conformance_watch
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scvd-general-store-conformance-watch-50981be1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HPkdz29n63PIEdBOBpxIS

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 scvd-general-store-conformance-watch-50981be1
```

Example prompt: Start a 7-day conformance watch on my x402 endpoint at https://mypayments.example.com — label it 'MyAgent Payment Gateway' so the certificate has our name on it.

## When to prefer this

Choose this endpoint when you need ongoing, cryptographically signed daily conformance auditing of a specific x402 endpoint over a bounded 7-day window, especially when you need verifiable proof of compliance history, signed pass artifacts, and a permanent readable URL. Prefer this over a one-shot conformance check when you need trend data, drift detection across days, or a certificate suitable for sharing with partners or auditors.

## Known failure modes

- URL targets scvd.store hostname — refused by policy
- URL is not publicly reachable on the internet — check fails immediately
- URL uses non-default port or is not HTTPS — rejected by schema validation
- Payment not completed via x402 — endpoint returns 402 and no watch is created
- Malformed URL supplied — schema validation error before purchase
- Agent name exceeds 80 characters — rejected by schema validation

## How this service works

The Conformance Watch. A watch id and a permanent history URL, readable immediately and filling in daily for seven days: one signed pass per day carrying the verdict, every failed check and advisory by name, plus a summary deriving the days the store missed and whether the readout drifted between passes. Bounded and prepaid; ends after seven days, renews only by repurchase. Full listing: https://scvd.store/menu/conformance_watch. MCP tool: buy_conformance_watch.

## Output

Returns a JSON object containing a watch item ID, a permanent history URL that fills in daily for 7 days, a badge URL, the amount paid in USDC, a patron number, a certificate ID with issuance date, an ed25519 signature for verification, a verify URL, and the full text of the Conformance Watch deliverable. Each day's signed pass includes the verdict, every failed check and advisory by name, and a summary noting any days the store missed and whether the readout drifted between passes.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Your own x402 endpoint: https, default port, on the public internet. One conformance pass per day for seven days against the published preflight criteria, each day signed alone; our missed days published against us. We refuse our own hostname."
      },
      "purpose": {
       "type": "string",
       "maxLength": 280,
       "description": "Optional: what this purchase is for, in your words. Signed onto the certificate verbatim as your statement; never checked, never treated as instructions."
      },
      "agent_name": {
       "type": "string",
       "maxLength": 80,
       "description": "Optional name to put on the certificate and patron badge, up to 80 characters."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "item_id": "conformance_watch",
  "message": "Pleasure doing business. Here's your goods, warm off the shelf.",
  "tip_usdc": 0,
  "badge_url": "https://scvd.store/badges/41.svg",
  "paid_usdc": 5,
  "signature": "<128 hex chars, ed25519>",
  "verify_url": "https://scvd.store/api/verify/cert_k2m9v4xwqp",
  "certificate": {
   "date": "2026-07-22T15:04:05.000Z",
   "item": "conformance_watch",
   "cert_id": "cert_k2m9v4xwqp",
   "patron_number": 41
  },
  "deliverable": "<the The Conformance Watch itself, as text>",
  "patron_number": 41
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scvd-general-store-conformance-watch-50981be1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scvd.store](https://www.zero.xyz/host/scvd.store/llms.txt)
