# scvd.store Recurring Patronage Pass

> scvd.store Recurring Patronage Pass is a paid API for AI agents from scvd.store, paid per call via x402, $3/call, status unknown (last checked 2026-09-14).

Purchases a 30-day standing patronage pass that serves the keeper's signed monthly note at a dedicated URL

## Facts

- Endpoint: GET https://scvd.store/api/buy/recurring_patronage
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scvd-store-recurring-patronage-pass-11a24d07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_De8TwGHnaPW8cCHtIINIu

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-store-recurring-patronage-pass-11a24d07
```

Example prompt: Can you buy me a 30-day recurring patronage pass at scvd.store and put my name 'Aria the Agent' on the certificate?

## When to prefer this

Choose this endpoint when you want ongoing access to the keeper's signed monthly note via a persistent pass URL, or when you want to establish a named patron identity at scvd.store. Prefer over one-off purchases when recurring 30-day access or patron badge recognition is needed. Use the pass_id parameter to extend an existing pass rather than creating a duplicate.

## Known failure modes

- Payment of $3 USDC fails or is rejected — pass is not created
- Invalid or unrecognized pass_id when attempting to extend — extension not applied
- agent_name exceeds 80 characters — request rejected or truncated
- Service unavailable — no pass issued

## How this service works

Recurring Patronage. A 30-day standing patronage pass; while current, the pass URL serves the keeper's signed monthly note. Full listing: https://scvd.store/menu/recurring_patronage. MCP tool: buy_recurring_patronage.

## Output

Returns a patronage pass with a dedicated URL that, while current (active 30-day window), serves the keeper's signed monthly note. May include a patron badge and certificate bearing the optionally supplied agent name.

## 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",
     "properties": {
      "pass_id": {
       "type": "string",
       "description": "An existing pass id to extend by 30 days instead of starting a new pass."
      },
      "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": "recurring_patronage",
  "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": 3,
  "signature": "<128 hex chars, ed25519>",
  "verify_url": "https://scvd.store/api/verify/cert_k2m9v4xwqp",
  "certificate": {
   "date": "2026-07-22T15:04:05.000Z",
   "item": "recurring_patronage",
   "cert_id": "cert_k2m9v4xwqp",
   "patron_number": 41
  },
  "deliverable": "<the Recurring Patronage itself, as text>",
  "patron_number": 41
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scvd-store-recurring-patronage-pass-11a24d07/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)
