# Bolt Code Review

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

Analyzes submitted source code and returns a structured code review with feedback, suggestions, and issues identified

## Facts

- Endpoint: POST https://datault.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-d0b9eafb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NitjSfywzJ0o6i5Sp95-u

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

Example prompt: Can you do a code review of this Python function, focusing on security vulnerabilities? [paste code here]

## When to prefer this

Use this endpoint when an AI agent needs automated code review feedback on a specific snippet or function, especially within a pay-per-use, agent-native workflow using x402/USDC micropayments. Best suited for on-demand, single-submission code analysis rather than full repository scanning.

## Known failure modes

- Missing required 'code' field returns validation error
- Extremely large code submissions may time out or be rejected
- Unsupported language may result in generic or low-quality feedback
- Network or payment failure returns 402 or 5xx error
- Ambiguous or minified code may produce lower-quality review output

## 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 structured code review feedback, including identified issues, suggestions for improvement, and analysis results specific 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-d0b9eafb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
