# SSDF MCP Pack Purchase

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

Purchases the SSDF MCP Pack digital product for $79 USDC, settling on Base via Coinbase Business and minting a Passport NFT as proof of purchase.

## Facts

- Endpoint: GET https://www.ssdf.site/api/x402/ssdf-mcp-pack
- Price: $79/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ssdf-mcp-pack-purchase-ba7864d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nVOpUhMkcWk9XbgnpfhcR

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-mcp-pack-purchase-ba7864d7
```

Example prompt: Buy me the SSDF MCP Pack from the SSDF digital store — pay $79 in USDC on Base and get me the fulfillment link and my Passport ID.

## When to prefer this

Use this endpoint when an agent or human needs to purchase the specific SSDF MCP Pack digital product, paying $79 USDC on Base via the x402 payment protocol. It is the canonical purchase endpoint for this SKU and simultaneously mints a Passport as proof-of-purchase, making it the right choice when downstream access requires both a fulfillment token and a verifiable Passport ID. Not suitable for free downloads, subscriptions, or products from other stores.

## Known failure modes

- Payment insufficient or failed — USDC balance too low or x402 payment not accepted, ok=false returned
- Invalid or expired payment header — x402 protocol mismatch, likely 402 Payment Required response
- Network/chain error on Base — settlement may not confirm, fulfillment not issued
- SKU unavailable — product out of stock or temporarily delisted
- Passport minting failure — on-chain mint fails even if payment succeeded, leaving fulfillment incomplete

## 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 if purchase succeeded), sku (the product identifier, e.g. 'ssdf-mcp-pack'), passport (a minted Passport ID tied to the purchase), and fulfillment (a token-gated URL path to redeem or download the product).

## 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-mcp-pack",
  "passport": "{id}",
  "fulfillment": "/api/fulfillment/{token}"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ssdf-mcp-pack-purchase-ba7864d7/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)
