# OpenAI: codex-auto-review

- Model ID: `codex-auto-review`
- Provider: OpenAI
- Web version: https://www.moleapi.com/en/models/openai/codex-auto-review
- Content status: catalog

## Model introduction

OpenAI coding model by OpenAI for code generation, repository understanding, debugging, and agentic development.

## Model capabilities

- OpenAI compatible
- Responses API
- Anthropic compatible
- Gemini compatible
- Image generation
- Coding
- Prompt cache

### Verified specifications

- Catalog status: Currently available on MoleAPI
- Compatible protocols: openai, openai-response, anthropic, gemini, image-generation, openai-response-compact, openai-alpha-search
- Available billing groups: Standard, Discount, Relay, Temporary (availability may vary)

## Model pricing and access

Pricing is supplied dynamically by the MoleAPI console API.

### Standard (default, x1)

- Input: $0.2 / 1M tokens
- Output: $1.2 / 1M tokens
- Cache read: $0.02 / 1M tokens
- Cache write: $0.25 / 1M tokens

### Discount (discount, x0.8)

- Input: $0.16 / 1M tokens
- Output: $0.96 / 1M tokens
- Cache read: $0.016 / 1M tokens
- Cache write: $0.2 / 1M tokens

### Relay (relay, x0.3)

- Input: $0.06 / 1M tokens
- Output: $0.36 / 1M tokens
- Cache read: $0.006 / 1M tokens
- Cache write: $0.075 / 1M tokens

### Temporary (availability may vary) (temp, x0.1)

- Input: $0.02 / 1M tokens
- Output: $0.12 / 1M tokens
- Cache read: $0.002 / 1M tokens
- Cache write: $0.025 / 1M tokens

### Access protocols

| Protocol | Method | Endpoint |
| --- | --- | --- |
| openai | POST | /v1/chat/completions |
| openai-response | POST | /v1/responses |
| anthropic | POST | /v1/messages |
| gemini | POST | /v1beta/models/{model}:generateContent |
| image-generation | POST | /v1/images/generations |
| openai-response-compact | POST | /v1/responses/compact |
| openai-alpha-search | POST | /v1/alpha/search |

- Live pricing source: https://home.moleapi.com/api/pricing

## About codex-auto-review

OpenAI coding model by OpenAI for code generation, repository understanding, debugging, and agentic development.

### Sources

- [MoleAPI console pricing catalog](https://home.moleapi.com/api/pricing) — MoleAPI

## Code examples

### cURL

```bash
curl https://api.moleapi.com/v1/responses \
  -H "Authorization: Bearer $MOLEAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"codex-auto-review","input":"Explain this problem step by step."}'
```

### Python

```python
from openai import OpenAI

client = OpenAI(base_url="https://api.moleapi.com/v1", api_key="YOUR_MOLEAPI_API_KEY")
response = client.responses.create(model="codex-auto-review", input="Explain this problem step by step.")
print(response.output_text)
```

### TypeScript

```typescript
import OpenAI from "openai";

const client = new OpenAI({ baseURL: "https://api.moleapi.com/v1", apiKey: process.env.MOLEAPI_API_KEY });
const response = await client.responses.create({ model: "codex-auto-review", input: "Explain this problem step by step." });
console.log(response.output_text);
```

## More related models

- [gpt-5.6-luna](https://www.moleapi.com/en/models/openai/gpt-5.6-luna) — OpenAI
- [gpt-5.6-sol](https://www.moleapi.com/en/models/openai/gpt-5.6-sol) — OpenAI
- [gpt-5.6-terra](https://www.moleapi.com/en/models/openai/gpt-5.6-terra) — OpenAI

## Frequently asked questions

### How is codex-auto-review priced?

Prices are read from the MoleAPI console API and update with model prices, context tiers, and account groups.

### How can I access codex-auto-review?

The catalog currently lists openai, openai-response, anthropic, gemini, image-generation, openai-response-compact, openai-alpha-search.

### How do I switch an existing project to codex-auto-review?

Keep the MoleAPI API address and key, replace the model parameter, and check protocol-specific parameters.

### Where do the codex-auto-review details come from?

Only confirmed availability, pricing, and protocol details from the MoleAPI catalog are included.
