# Bolt Code Review

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

Analyzes submitted source code and returns AI-powered code review feedback, optionally focused on specific concerns or a specific programming language.

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/code-review
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-code-review-4072c7e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hT6WocXDa09h-8a0pjU0P

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-4072c7e7 -d '<json body>'
```

Example prompt: Can you do an AI code review of this Python function I wrote — focus on security issues: ```def login(user, pw): query = 'SELECT * FROM users WHERE user=' + user```

## When to prefer this

Choose this endpoint when you need on-demand, pay-per-use AI code review without a subscription — particularly useful for AI agents automating code quality checks in CI pipelines or developer workflows where you want to submit arbitrary code snippets and get structured feedback instantly.

## Known failure modes

- Missing required 'code' field returns validation error
- Extremely long code snippets may timeout or be truncated
- Unsupported or ambiguous language may reduce review accuracy
- Payment failure (402) if USDC payment not attached
- Empty code string may return error or empty analysis

## 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 boolean and a data object containing AI-generated code review results, including identified issues, suggestions, and analysis findings for the submitted code.

## 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-4072c7e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
