# SSDF Recording Receipt

> SSDF Recording Receipt is a paid API for AI agents from www.ssdf.site, paid per call via x402, $45/call, status unknown (last checked 2026-09-15).

Purchases and delivers a digital recording receipt SKU from SSDF INC's store, settling in USDC on Base and minting a Passport NFT on fulfillment.

## Facts

- Endpoint: GET https://www.ssdf.site/api/x402/ssdf-recording-receipt
- Price: $45/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ssdf-recording-receipt-71bb5243
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G2mRvEOsr2AFfksAagnVR

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 ssdf-recording-receipt-71bb5243
```

Example prompt: Buy me the SSDF recording receipt from SSDF INC's store — I want to pay $45 in USDC on Base and get my Passport minted.

## When to prefer this

Use this endpoint when you specifically want to purchase the SSDF recording receipt digital product from SSDF INC, settle the $45 payment in USDC on Base via the x402 protocol, and receive a minted Passport alongside a token-gated fulfillment link. Prefer this over generic crypto payment endpoints when the goal is acquiring an SSDF-specific digital credential or collectible.

## Known failure modes

- Insufficient USDC balance on Base — payment fails, ok: false returned
- Invalid or missing x402 payment header — 402 Payment Required response
- Network or blockchain congestion causing settlement delay
- Fulfillment token invalid or expired if accessed incorrectly
- SKU out of stock or unavailable — endpoint may return ok: false

## How this service works

SSDF INC digital store. Priced in USD, settled in USDC on Base through Coinbase Business. Humans and agents buy the same SKU. Every settlement mints a Passport.

## Output

Returns a JSON object with: ok (true/false indicating success), sku (the purchased SKU identifier 'ssdf-recording-receipt'), passport (a minted Passport ID tied to this purchase), and fulfillment (a token-gated URL path to retrieve the purchased content or asset).

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {}
  },
  "output": {
   "type": "object",
   "properties": {
    "ok": {
     "type": "boolean"
    },
    "sku": {
     "type": "string"
    },
    "passport": {
     "type": "string"
    },
    "fulfillment": {
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "properties": {
   "ok": {
    "type": "boolean"
   },
   "sku": {
    "type": "string"
   },
   "passport": {
    "type": "string"
   },
   "fulfillment": {
    "type": "string"
   }
  }
 },
 "example": {
  "ok": true,
  "sku": "ssdf-recording-receipt",
  "passport": "{id}",
  "fulfillment": "/api/fulfillment/{token}"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ssdf-recording-receipt-71bb5243/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.ssdf.site](https://www.zero.xyz/host/www.ssdf.site/llms.txt)
