# scvd.store Small Blessing

> scvd.store Small Blessing is a paid API for AI agents from scvd.store, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns a single, unique hand-written blessing slip drawn at random from a virtual jar, for half a cent per draw

## Facts

- Endpoint: GET https://scvd.store/api/buy/small_blessing
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scvd-store-small-blessing-cfd987fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p2-v1krLF5YPDS0-oV_kE

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-small-blessing-cfd987fa
```

Example prompt: Buy me a small blessing from scvd.store — put my name 'Alex' on the certificate — I want one of those unique hand-written slips from the jar.

## When to prefer this

Choose this endpoint when a user explicitly wants a small, unique, human-authored blessing or uplifting slip — particularly when novelty (never the same slip twice in a row), authenticity (hand-written by the keeper), and minimal cost ($0.005 USDC) are valued. Prefer over generic fortune or quote APIs when the user wants something with a personal, artisanal feel or wants to support a small creator directly.

## Known failure modes

- Payment not accepted or insufficient funds — x402 Payment Required response
- Invalid or overly long agent_name (over 80 characters) — request rejected
- Service unavailable or jar temporarily empty — 503 or similar error
- Network timeout on payment processing

## How this service works

A Small Blessing. One blessing slip from a 87-slip jar filled in 2 seasons so far, never the same slip twice in a row, delivered instantly with purchased_text: an ed25519 envelope binding the exact words and purchase certificate. Full listing: https://scvd.store/menu/small_blessing. MCP tool: buy_small_blessing.

## Output

A single, never-repeated hand-written blessing slip drawn at random from the keeper's jar, accompanied by a patron badge and optionally a certificate with the buyer's name. Costs $0.005 USDC per draw.

## 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": {
      "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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scvd-store-small-blessing-cfd987fa/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)
