# GPT-5.4-mini Short Answer & Context QA

> GPT-5.4-mini Short Answer & Context QA is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.002627/call, status unknown (last checked 2026-09-15).

Answers a question from optional context text using a low-cost GPT-5.4-mini model, billed per request via x402 USDC on Base

## Facts

- Endpoint: POST https://gpt55.558686.xyz/v1/tools/answer/mini
- Price: $0.002627/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-short-answer-context-qa-bc9ea165
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qBW-cdnrXSsszgyIUSaIl

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-short-answer-context-qa-bc9ea165 -d '<json body>'
```

Example prompt: Using the mini-tier QA endpoint, answer this question based on the following contract excerpt: 'What is the termination notice period?' — keep the answer under 200 tokens.

## When to prefer this

Choose this endpoint when you need low-cost, fast question answering over a provided text context and don't need structured JSON output or code review. Ideal for document QA, reading comprehension tasks, support ticket triage, or any scenario where cost efficiency matters and the mini model's capability is sufficient. Prefer it over the standard-tier endpoints when budget is constrained and questions are straightforward.

## Known failure modes

- Question missing or empty — 400 validation error (minLength:1 required)
- Context or question exceeds 700,000 characters — 400 payload too large
- max_tokens out of range (must be 1–4096) — 400 validation error
- Payment not authorized or insufficient USDC balance — 402 payment required
- Temperature out of range (0–2) — 400 validation error
- Model upstream unavailable — 503 or timeout

## How this service works

Low-cost short answers and context QA. 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.002627 per request with x402 USDC on Base. Public paid calls are limited to 700000 input characters and 4096 output tokens.

## Output

A short natural language answer to the submitted question, optionally grounded in the provided context text, generated by GPT-5.4-mini with up to 4096 output tokens

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "context": {
   "type": "string",
   "maxLength": 700000
  },
  "question": {
   "type": "string",
   "maxLength": 700000,
   "minLength": 1
  },
  "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-short-answer-context-qa-bc9ea165/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)
