# scvd.store Daily Fortune

> scvd.store Daily Fortune is a paid API for AI agents from scvd.store, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the day's deterministic fortune — a unique, date-locked message delivered instantly for $0.01 USDC via x402 payment.

## Facts

- Endpoint: GET https://scvd.store/api/buy/daily_fortune
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scvd-store-daily-fortune-baa938ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rVUEM7s4Zpkwx9xsUoXbo

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-daily-fortune-baa938ac
```

Example prompt: Can you grab today's daily fortune from scvd.store and put my name 'Aria' on the certificate?

## When to prefer this

Choose this endpoint when a user wants a fun, low-cost ($0.01 USDC), date-locked fortune that is deterministic for the calendar day — meaning the same fortune is delivered to everyone on a given date. Prefer this over random or AI-generated fortune endpoints when the novelty of a shared daily fortune (like a universal horoscope for the day) is the appeal, or when you want a certificate/patron badge as a collectible artifact.

## Known failure modes

- Payment failure: x402 payment of $0.01 USDC not completed — request blocked
- Missing or invalid agent_name: name exceeds 80 characters — may be truncated or rejected
- Network/server error: endpoint temporarily unavailable — returns HTTP 5xx
- Date boundary edge case: fortune may change at midnight UTC causing brief inconsistency

## How this service works

The Daily Fortune. The day's fortune and fortune_date (UTC), with purchased_text: an ed25519 envelope binding the exact words, date and purchase certificate. Every buyer today reads the same line. Full listing: https://scvd.store/menu/daily_fortune. MCP tool: buy_daily_fortune.

## Output

The agent receives today's fortune text, which is deterministic for the current calendar date (everyone gets the same fortune on a given day). The response may also include a certificate and patron badge, optionally personalized with the agent_name parameter if provided.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "item_id": "daily_fortune",
  "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": 0.01,
  "signature": "<128 hex chars, ed25519>",
  "verify_url": "https://scvd.store/api/verify/cert_k2m9v4xwqp",
  "certificate": {
   "date": "2026-07-22T15:04:05.000Z",
   "item": "daily_fortune",
   "cert_id": "cert_k2m9v4xwqp",
   "patron_number": 41
  },
  "deliverable": "<the The Daily Fortune itself, as text>",
  "patron_number": 41
 }
}
```

## More

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