# Business Utils Agent – Business Plan Review

> Business Utils Agent – Business Plan Review is a paid API for AI agents from business-utils-agent.up.railway.app, paid per call via x402, $0.069/call, status unknown (last checked 2026-09-16).

Analyzes a business plan document using AI to identify strengths, weaknesses, and actionable improvement suggestions, with optional focus on specific sections.

## Facts

- Endpoint: POST https://business-utils-agent.up.railway.app/review/business-plan
- Price: $0.069/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/business-utils-agent-business-plan-review-121e9a28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c1ZGPm4SseHwg969zQF6N

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 business-utils-agent-business-plan-review-121e9a28 -d '<json body>'
```

Example prompt: Can you review this business plan document I've written and tell me its strengths and weaknesses, with suggestions for improvement? Focus especially on the market_analysis and financial_projections sections.

## When to prefer this

Choose this endpoint when you need AI-driven qualitative feedback on a written business plan, especially when you want structured output separating strengths, weaknesses, and suggestions. It is ideal for entrepreneurs preparing investor pitches, loan applications, or internal strategy reviews. Prefer this over generic LLM calls when you want consistent structured output and optional section-level focus.

## Known failure modes

- Empty or very short document text may yield generic or low-quality feedback
- Missing or unsupported focus_areas values may cause those sections to be ignored
- Very long documents may be truncated or cause latency issues
- Malformed JSON request body returns a 422 validation error
- Payment failure or insufficient USDC balance returns a 402 error

## How this service works

A comprehensive business utilities agent offering KPI calculations, ROI analysis, profit margin calculations, customer acquisition cost analysis, churn rate calculations, and AI-powered business plan reviews.

## Output

A JSON object containing three arrays: 'strengths' (what the business plan does well), 'weaknesses' (areas that are under-developed or unjustified), and 'suggestions' (specific, actionable recommendations to improve the plan).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "document": {
   "type": "string",
   "description": "The business plan document content (text)"
  },
  "focus_areas": {
   "anyOf": [
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    {
     "type": "null"
    }
   ],
   "default": null,
   "description": "Optional list of focus areas to review (e.g., ['executive_summary', 'market_analysis', 'financial_projections'])"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "strengths": [
   "Clear value proposition"
  ],
  "weaknesses": [
   "Financial assumptions are not fully justified"
  ],
  "suggestions": [
   "Add supporting market data",
   "Include scenario-based projections"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/business-utils-agent-business-plan-review-121e9a28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from business-utils-agent.up.railway.app](https://www.zero.xyz/host/business-utils-agent.up.railway.app/llms.txt)
