# Bolt Code Review

> Bolt Code Review is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyzes submitted source code and returns a structured code review with findings, suggestions, and quality feedback

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/code-review
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-code-review-59b33346
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2CQk0vQWNvryubKGLht-z

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 bolt-code-review-59b33346 -d '<json body>'
```

Example prompt: Can you do a code review on this Python function — focus on security issues: `def login(user, pwd): query = f'SELECT * FROM users WHERE user={user} AND pwd={pwd}'; return db.execute(query)`

## When to prefer this

Choose this endpoint when an AI agent needs automated, per-request code review with pay-as-you-go pricing in USDC — ideal for agentic pipelines that occasionally need to review code snippets without a subscription, or when integrating code quality checks into automated workflows that already use x402 micropayment infrastructure.

## Known failure modes

- Missing required `code` field returns validation error
- Empty or extremely large code strings may fail or time out
- Unsupported language string may produce generic or degraded review
- Payment failure via x402 results in 402 response before processing
- Malformed JSON body returns 400 error

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

A JSON response with a `success` boolean and a `data` object containing structured code review results, likely including identified issues, severity levels, suggestions for improvement, and quality observations specific to the submitted code and focus area.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "code"
 ],
 "properties": {
  "code": {
   "type": "string"
  },
  "focus": {
   "type": "string"
  },
  "language": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-code-review-59b33346/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
