# SSDF Agent Dataset

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

Purchases and delivers the SSDF agent dataset SKU, settling $29 USDC on Base and minting a Passport NFT as proof of purchase.

## Facts

- Endpoint: GET https://www.ssdf.site/api/x402/ssdf-agent-dataset
- Price: $29/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ssdf-agent-dataset-8ac5645f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UrhtaM-0b8-ChcYjXH2yW

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-agent-dataset-8ac5645f
```

Example prompt: Buy me the SSDF agent dataset from SSDF INC — it's $29 in USDC settled on Base, and I want the passport and fulfillment link sent back to me.

## When to prefer this

Choose this endpoint when an agent or human needs to purchase and immediately receive access to the SSDF agent dataset, with blockchain-based proof of ownership (Passport). It is ideal for autonomous agents that can handle x402 micropayment flows natively and need a self-contained purchase-plus-delivery response in a single call. Prefer this over generic file download endpoints when on-chain proof of purchase or NFT-based access control is required.

## Known failure modes

- Payment insufficient or rejected — USDC balance too low or Base transaction fails, resulting in a non-200 402 response
- Invalid or expired payment token — x402 payment header malformed or already spent
- Fulfillment token not yet available — passport minting delayed on-chain
- Network/RPC error on Base — blockchain congestion causing timeout
- SKU not found — endpoint path mismatch returns 404

## 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, e.g. 'ssdf-agent-dataset'), 'passport' (a unique ID representing the minted Passport tied to this purchase), and 'fulfillment' (a URL path to retrieve the actual dataset content using the purchase token).

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ssdf-agent-dataset-8ac5645f/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)
