# Clearance — Agent Income Blueprint API

> Clearance — Agent Income Blueprint API is a paid API for AI agents from clearance.nauti-labs.com, paid per call via x402, $499/call, status unknown (last checked 2026-09-16).

Analyzes an AI agent project and returns a tailored monetization blueprint including x402 payment integration points, architecture recommendations, risk assessment, and income opportunity planning.

## Facts

- Endpoint: GET https://clearance.nauti-labs.com/agent-income/blueprint
- Price: $499/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearance-agent-income-blueprint-api-b0b97304
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ogt8-fEZvX8ESi7ONDAI4

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 clearance-agent-income-blueprint-api-b0b97304
```

Example prompt: I'm building a research AI agent at https://myresearchagent.io that I want to monetize — it's built on LangChain and FastAPI, and my goal is to earn $5,000/month. Can you generate a full income blueprint showing where to add Clearance approval gates, which services to charge for, and how to wire up x402 payments?

## When to prefer this

Choose this endpoint when you need a structured, AI-generated monetization strategy specifically for an AI agent project — particularly when you want guidance on x402 payment integration, human-approval gating via Clearance, and on-chain payment verification. Best suited for agent developers who want a concrete blueprint rather than generic advice, and who are ready to integrate real payment rails into their agent stack.

## Known failure modes

- Missing required fields (agent_type, project_url, payment_goal, or current_stack) returns a validation error
- Unreachable or invalid project_url may reduce blueprint accuracy
- Vague or empty current_stack input may result in generic rather than tailored recommendations
- At $499 USDC per call, failed or partial responses due to network issues may still incur charges under x402 protocol

## How this service works

The auth layer between human intent and agent execution. One API call. Human approves. Agent proceeds. Verified on-chain.

## Output

Returns a comprehensive JSON object containing: a readiness score, executive summary, list of income opportunities, endpoint monetization plan, architecture recommendations, x402 protocol integration advice, Clearance human-approval integration points, payment flow recommendations, risk array, launch checklist, next steps, and optional upsell information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "agent_type",
  "project_url",
  "payment_goal",
  "current_stack"
 ],
 "properties": {
  "notes": {
   "type": "string"
  },
  "agent_type": {
   "enum": [
    "buyer",
    "seller",
    "both",
    "unknown"
   ],
   "type": "string"
  },
  "constraints": {
   "type": "string"
  },
  "project_url": {
   "type": "string"
  },
  "architecture": {
   "type": "string"
  },
  "payment_goal": {
   "enum": [
    "accept_payments",
    "make_payments",
    "both"
   ],
   "type": "string"
  },
  "current_stack": {
   "enum": [
    "AWS",
    "Coinbase",
    "Stripe",
    "custom",
    "unknown"
   ],
   "type": "string"
  },
  "current_endpoints": {
   "type": "array"
  },
  "desired_paid_services": {
   "type": "array"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "risks": {
   "type": "array"
  },
  "score": {
   "type": "number"
  },
  "upsell": {
   "type": "object"
  },
  "summary": {
   "type": "string"
  },
  "next_steps": {
   "type": "array"
  },
  "endpoint_plan": {
   "type": "array"
  },
  "launch_checklist": {
   "type": "array"
  },
  "architecture_plan": {
   "type": "array"
  },
  "x402_recommendation": {
   "type": "string"
  },
  "income_opportunities": {
   "type": "array"
  },
  "clearance_recommendation": {
   "type": "string"
  },
  "payment_flow_recommendation": {
   "type": "string"
  },
  "aws_agentcore_recommendation": {
   "type": "string"
  },
  "clearance_integration_points": {
   "type": "array"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearance-agent-income-blueprint-api-b0b97304/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clearance.nauti-labs.com](https://www.zero.xyz/host/clearance.nauti-labs.com/llms.txt)
