# SSDF Lender Overlay

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

Purchases the SSDF lender-overlay digital product SKU, settling in USDC on Base and minting a blockchain Passport upon fulfillment.

## Facts

- Endpoint: GET https://www.ssdf.site/api/x402/ssdf-lender-overlay
- Price: $79/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ssdf-lender-overlay-fc983578
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8ggO2LomzoP_IfvVbiPFt

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-lender-overlay-fc983578
```

Example prompt: Buy me the SSDF lender overlay from the SSDF digital store — pay the $79 USDC price and get back my Passport and fulfillment token.

## When to prefer this

Choose this endpoint when an agent or user specifically needs to purchase the SSDF lender-overlay digital product, receive an on-chain Passport, and obtain a fulfillment token — particularly in agentic workflows that support x402 micropayment protocol and USDC settlement on Base. It is the only endpoint for this specific SKU.

## Known failure modes

- Insufficient USDC balance — payment fails and ok returns false
- x402 payment header missing or malformed — 402 response with no fulfillment issued
- Network or Base chain congestion causing settlement delay
- Invalid or expired payment — Passport not minted, no fulfillment token returned
- Rate limiting or SKU out of stock returning an error response

## 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 purchased SKU string 'ssdf-lender-overlay'), passport (a minted Passport ID on-chain), and fulfillment (a URL/token path to retrieve the actual digital 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-lender-overlay",
  "passport": "{id}",
  "fulfillment": "/api/fulfillment/{token}"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ssdf-lender-overlay-fc983578/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)
