# Bolt Code Review

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

Analyzes submitted source code and returns AI-generated code review feedback, covering issues, improvements, and best practices

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/code-review
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-code-review-1afba930
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pe2QmvDKE0U559vv3W-QN

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-1afba930 -d '<json body>'
```

Example prompt: Can you do a code review on this Python function I wrote? Focus on security vulnerabilities and performance — here's the code: [paste code]

## When to prefer this

Use this endpoint when an AI agent needs automated, on-demand code review without human reviewer availability, especially when integrated into a development workflow needing pay-per-use pricing via USDC. Prefer over manual review when speed matters and a programmatic, structured response is needed.

## Known failure modes

- Missing required 'code' field returns validation error
- Unsupported or ambiguous language may reduce review accuracy
- Very large code submissions may time out or be truncated
- Payment failure (402) if USDC balance is insufficient
- 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

Returns a JSON object with a success flag and a data object containing AI-generated code review results, including identified issues, suggested improvements, and best practices relevant to the submitted code and optional 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-1afba930/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
