# Bolt Code Review

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

Analyzes submitted source code and returns AI-generated review feedback, optionally focused on specific concerns or languages

## Facts

- Endpoint: POST https://deltadata.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-c2b403f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-HcifgtstHoU546h99g6-

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

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

## When to prefer this

Use this endpoint when an AI agent needs automated code review feedback on a code snippet, especially when a quick AI-powered analysis is needed without setting up a dedicated static analysis tool. Suitable for agents helping developers catch bugs, security issues, or style problems on demand.

## Known failure modes

- Missing required 'code' field returns validation error
- Empty or malformed code string may produce unhelpful review
- Payment failure (402) if USDC not provided via x402 protocol
- Very large code submissions may be truncated or rejected
- Unrecognized language value may fall back to generic 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 the AI-generated code review, which likely includes identified issues, suggestions, and analysis based on the submitted code, language, 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-c2b403f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deltadata.orbonomy.xyz](https://www.zero.xyz/host/deltadata.orbonomy.xyz/llms.txt)
