# Agentic-SaaS x402 Integration Brief

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

Returns a paid integration brief document for a given HTTP-based agentic SaaS integration, delivered via x402 micropayment on Base (USDC).

## Facts

- Endpoint: POST https://x402-seller-mainnet.wansolek.workers.dev/v1/brief
- Price: $0.25/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-integration-brief-13f21dec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qIJkkANBK7uAbzOwfBfr0

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-integration-brief-13f21dec -d '<json body>'
```

Example prompt: Generate an integration brief for my agentic SaaS product — it uses a POST request with a JSON body — and pay the $0.25 fee in USDC via x402 on Base.

## When to prefer this

Choose this endpoint when you need a structured, paid integration brief for an HTTP-based agentic SaaS service and are operating within the x402 micropayment ecosystem on Base (USDC). It is ideal for AI agents that need authoritative integration documentation on demand without requiring traditional API key provisioning. Prefer this over free manifest ($0.01) or drift audit ($0.05) endpoints when you need the full integration specification rather than a summary or audit.

## Known failure modes

- Payment not received or invalid EIP-3009 authorization — returns HTTP 402 Payment Required
- Malformed input object missing required fields (type, method, bodyType, body) — returns 400 Bad Request
- Unsupported HTTP method in body (not POST/PUT/PATCH) — returns 400 validation error
- Unsupported bodyType value — returns 400 validation error
- Worker timeout or downstream failure — returns 500 or 503
- Stale or replayed payment token — payment rejected by facilitator

## 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 an integration brief identified by an ID (e.g. 'x402-seller-rail:p2:brief'), describing how to integrate with the agentic SaaS service. The document is signed and delivered after successful x402 micropayment of $0.25 USDC on Base.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "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:p2:brief"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-saas-x402-integration-brief-13f21dec/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)
