# GPT-5.5 Plus Code Review

> GPT-5.5 Plus Code Review is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.211/call, status unknown (last checked 2026-09-14).

Performs deep, plus-tier code review covering security vulnerabilities, architecture quality, test coverage, and actionable patch suggestions using GPT-5.5.

## Facts

- Endpoint: POST https://gpt55.558686.xyz/v1/tools/code-review/plus
- Price: $0.211/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gpt-5-5-plus-code-review-e6b568dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xRKrhnuTdVlXoeizJn8xp

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 gpt-5-5-plus-code-review-e6b568dc -d '<json body>'
```

Example prompt: Do a thorough plus-tier code review of this Python function — focus on security issues, check the architecture, flag missing tests, and give me concrete patch suggestions: [paste code here].

## When to prefer this

Choose this endpoint when you need a comprehensive, high-quality code review beyond basic triage — specifically when security analysis, architectural critique, test gap detection, and patch-level suggestions are all required in a single pass. Prefer this over the mini or standard tiers when code quality stakes are high and you can tolerate a slightly higher per-call cost of $0.211 USDC.

## Known failure modes

- Code input exceeds 700,000 character limit — request rejected
- Invalid or missing code field — 400 error
- Payment of $0.211 USDC not provided or insufficient — 402 Payment Required
- Temperature or max_tokens out of allowed range — validation error
- Upstream GPT-5.5 model unavailable — 503 or timeout

## How this service works

Plus code review for security, architecture, tests, and patch suggestions. Model tier: plus; upstream model: gpt-5.5. Price is derived from official OpenAI relative token costs with a local margin and floor. Pay up to $0.211 per request with x402 USDC on Base. Public paid calls are limited to 700000 input characters and 4096 output tokens.

## Output

A detailed code review report covering security vulnerabilities, architectural concerns, test coverage gaps, and specific patch suggestions, generated by GPT-5.5 at plus model tier, up to 4096 output tokens.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "code": {
   "type": "string",
   "maxLength": 700000,
   "minLength": 1
  },
  "focus": {
   "type": "string"
  },
  "language": {
   "type": "string"
  },
  "max_tokens": {
   "type": "integer",
   "maximum": 4096,
   "minimum": 1
  },
  "temperature": {
   "type": "number",
   "maximum": 2,
   "minimum": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt-5-5-plus-code-review-e6b568dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gpt55.558686.xyz](https://www.zero.xyz/host/gpt55.558686.xyz/llms.txt)
