# Clearance — Agent Income Review API

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

Reviews an AI agent's payment and monetization setup and returns a scored analysis with recommendations for income opportunities, spend controls, risks, and x402/Clearance integration guidance.

## Facts

- Endpoint: GET https://clearance.nauti-labs.com/agent-income/review
- Price: $199/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearance-agent-income-review-api-ce378f14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LrgNhfyznaEz6V3nNTFjn

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-review-api-ce378f14
```

Example prompt: I'm building a DeFi research agent that I want to monetize — can you review my project at https://github.com/myteam/defi-agent, analyze my current stack (Node.js + x402), and score my setup for income opportunities and risks? My payment goal is to charge $0.10 per query via x402 and I want spend controls built in.

## When to prefer this

Choose this endpoint when you need a structured, scored review of an AI agent's monetization and payment architecture — especially when evaluating x402 integration, Clearance human-approval flows, or spend control design. Prefer it over generic consulting or documentation when you want a machine-readable score, risk list, and actionable next steps in a single call. Best suited for agent builders in the design or pre-launch phase who need opinionated guidance on income streams and safety controls.

## Known failure modes

- Missing required fields (agent_type, project_url, payment_goal, current_stack) returns a 400 or validation error
- Invalid or unreachable project_url may result in incomplete analysis or lower score
- Insufficient context in optional fields may yield generic rather than tailored recommendations
- Payment failure or insufficient USDC balance results in 402 Payment Required and no analysis returned
- Ambiguous payment_goal or current_stack may produce low-confidence recommendations

## 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 structured analysis including a numeric score, plain-language summary, identified risks, income opportunity suggestions, spend control recommendations, next steps, pricing notes, endpoint design feedback, and specific recommendations for x402, Clearance, AWS AgentCore, and payment flow — plus an optional upsell object for additional services.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "risks": {
   "type": "array"
  },
  "score": {
   "type": "number"
  },
  "upsell": {
   "type": "object"
  },
  "summary": {
   "type": "string"
  },
  "next_steps": {
   "type": "array"
  },
  "pricing_notes": {
   "type": "array"
  },
  "spend_controls": {
   "type": "array"
  },
  "endpoint_design": {
   "type": "array"
  },
  "x402_recommendation": {
   "type": "string"
  },
  "income_opportunities": {
   "type": "array"
  },
  "clearance_recommendation": {
   "type": "string"
  },
  "payment_flow_recommendation": {
   "type": "string"
  },
  "aws_agentcore_recommendation": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearance-agent-income-review-api-ce378f14/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)
