# Agentic-SaaS x402 Seller Manifest

> Agentic-SaaS x402 Seller Manifest is a paid API for AI agents from x402-seller-mainnet.wansolek.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a signed service manifest describing available paid endpoints and their x402 payment terms on Base (USDC).

## Facts

- Endpoint: GET https://x402-seller-mainnet.wansolek.workers.dev/v1/manifest
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-saas-x402-seller-manifest-cb68a6ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DYBQp7JV7UCvnT67wiszl

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 agentic-saas-x402-seller-manifest-cb68a6ed
```

Example prompt: Fetch the signed manifest from the Agentic-SaaS x402 seller on Base so I can see what endpoints are available, what they cost in USDC, and which wallet address to pay.

## When to prefer this

Use this endpoint as the first step whenever an agent needs to interact with this x402 seller: it is the cheapest call ($0.01) and returns the authoritative payment address, network, and product catalogue needed before making any higher-value call like the drift audit ($0.05) or integration brief ($0.25). Prefer it over hardcoding payment details, since the signed manifest is the canonical source of truth for the seller's current configuration on Base.

## Known failure modes

- 402 Payment Required if payment header is missing or malformed
- Invalid method — only GET, HEAD, DELETE accepted
- Network mismatch if agent targets wrong chain
- Stale manifest if canary version has been rotated
- Worker timeout or cold-start latency on Cloudflare edge

## How this service works

x402 seller rail on eip155:8453 — USDC on Base. Serves a signed manifest ($0.01), drift audit ($0.05), and integration brief ($0.25). Pay with EIP-3009 exact scheme via the x402 facilitator.

## Output

A JSON object containing the manifest ID, human-readable name, the seller's USDC payout address on Base (eip155:8453), network identifier, and version string — everything an agent needs to construct a valid x402 payment before calling a premium endpoint.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "x402-seller-rail:r1:manifest",
  "name": "Agentic-SaaS manifest (R1 canary)",
  "payTo": "0x70DC0d4622c83e32Abf200f36Db3d2e1870e98E3",
  "network": "eip155:8453",
  "version": "1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-saas-x402-seller-manifest-cb68a6ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller-mainnet.wansolek.workers.dev](https://www.zero.xyz/host/x402-seller-mainnet.wansolek.workers.dev/llms.txt)
