# Clearance Agent Income Audit

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

Analyzes an AI agent's configuration and goals to produce a monetization readiness score, income opportunity recommendations, and payment flow guidance including x402 and human approval layer advice.

## Facts

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

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-audit-13ce7899
```

Example prompt: Can you audit my AI trading agent at https://myproject.io for monetization readiness? It's a DeFi portfolio agent built on LangChain, and my payment goal is to charge users $5 per rebalance via x402 micropayments.

## When to prefer this

Choose this endpoint when you need a structured, scored audit of an AI agent's monetization potential and want concrete recommendations on which payment protocols (x402, human approval gates) fit the agent's use case. It is purpose-built for agent commerce readiness, not generic business analytics or human user onboarding flows.

## Known failure modes

- Missing required fields (agent_type, project_url, payment_goal, current_stack) return a validation error
- Invalid or unreachable project_url may produce incomplete analysis
- Ambiguous agent_type string may result in generic rather than tailored recommendations
- $49 USDC payment failure via x402 blocks access to the endpoint
- Overly broad payment_goal descriptions may yield vague income opportunity arrays

## 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 numeric monetization readiness score, a plain-language summary, an array of income opportunity suggestions, a recommended payment flow, a Clearance human-approval recommendation, an x402 protocol recommendation, an array of identified risks, and an array of actionable next steps. May also include an upsell object and AWS AgentCore recommendation.

## 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"
  },
  "project_url": {
   "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",
 "required": [
  "score",
  "summary",
  "income_opportunities",
  "payment_flow_recommendation",
  "clearance_recommendation",
  "x402_recommendation",
  "risks",
  "next_steps"
 ],
 "properties": {
  "risks": {
   "type": "array"
  },
  "score": {
   "type": "number"
  },
  "upsell": {
   "type": "object"
  },
  "summary": {
   "type": "string"
  },
  "next_steps": {
   "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-audit-13ce7899/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)
