# GPT-5.4-mini Code Review Triage (Mini Tier)

> GPT-5.4-mini Code Review Triage (Mini Tier) is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.003232/call, status unknown (last checked 2026-09-15).

Performs fast AI-powered code-review triage to surface obvious bugs, lint risks, and missing tests using a mini-tier GPT model, paid via x402 USDC on Base.

## Facts

- Endpoint: POST https://gpt55.558686.xyz/v1/tools/code-review/mini
- Price: $0.003232/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gpt-5-4-mini-code-review-triage-mini-tier-40297b53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a74GYNl11FuXon44LdsIQ

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-4-mini-code-review-triage-mini-tier-40297b53 -d '<json body>'
```

Example prompt: Can you do a quick code review triage on this Python function for obvious bugs, lint risks, and missing tests? Here's the code: `def divide(a, b): return a / b` — focus on error handling and keep the response under 500 tokens.

## When to prefer this

Choose this endpoint when you need fast, cheap AI-assisted code review triage for a single code snippet and want structured feedback on bugs, lint risks, and missing tests without running a full static analysis pipeline. Ideal for pre-commit checks, PR triage, or quick sanity checks where cost sensitivity matters and a mini-tier model is sufficient.

## Known failure modes

- Input code exceeds 700,000 character limit — request rejected
- max_tokens exceeds 4096 — validation error
- Empty or missing code field — request rejected
- Payment failure or insufficient USDC balance via x402 — 402 response
- Temperature out of range (0–2) — validation error
- Upstream model unavailable — 5xx error

## How this service works

Fast code-review triage for obvious bugs, lint risks, and missing tests. Model tier: mini; upstream model: gpt-5.4-mini. Price is derived from official OpenAI relative token costs with a local margin and floor. Pay up to $0.003232 per request with x402 USDC on Base. Public paid calls are limited to 700000 input characters and 4096 output tokens.

## Output

Returns an AI-generated code review identifying obvious bugs, lint risks, and missing test gaps in the submitted code, up to 4096 output tokens. Response is scoped to the provided focus area and language context.

## 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-4-mini-code-review-triage-mini-tier-40297b53/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)
