openai·chat· vision· free-tier

GPT 5.4 Mini

openai/gpt-5.4-mini

GPT-5.4's smaller sibling — cheaper, faster, built for volume.

At a glance

  • · $0.75 input / $4.50 output per 1M tokens (provider list price, billed in credits)
  • · Context window: 400,000 tokens
  • · OpenAI-compatible — model: "openai/gpt-5.4-mini" (provider: openai)
  • · Free-tier available — new accounts get 10,000 free credits
  • · Best for: Fraction of GPT-5.4 cost with very similar tool-use quality

Strengths

  • +Fraction of GPT-5.4 cost with very similar tool-use quality
  • +Low latency — good for realtime chat and inline completion
  • +Same 400k context window as the full-size model

Weaknesses

  • No dedicated reasoning mode — complex math degrades
  • On very long tool-call chains, drift detection is weaker

Use cases

  • High-volume chatbots with latency requirements
  • Classification, routing, tagging at scale
  • Embedding pre-processing: short summaries before embedding

Not the right pick for

  • ×Complex multi-step reasoning — use gpt-5.4 or the o-series

Alternatives in the catalog

How to call it

Drop-in OpenAI-compatible. Just swap the `model` string and you're using this model.

curl https://www.getmorecredits.com/v1/chat/completions \
  -H "Authorization: Bearer $GMC_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-5.4-mini",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Good for

Frequently asked questions

How much does GPT 5.4 Mini cost?

Input is $0.75 per million tokens; output is $4.50 per million tokens — provider list price. On getmorecredits.com you pay in credits, no subscription, no minimum spend.

What's the context window of GPT 5.4 Mini?

GPT 5.4 Mini accepts up to 400,000 input tokens, with a maximum of 16,384 output tokens per response. That fits whole code repos or book-length documents into a single call.

What can GPT 5.4 Mini do?

GPT 5.4 Mini supports image input (vision), tool calling, native JSON mode, structured output. GPT-5.4's smaller sibling — cheaper, faster, built for volume.

Is GPT 5.4 Mini OpenAI-compatible?

Yes. On getmorecredits.com you call GPT 5.4 Mini with the same request shape as OpenAI: POST /v1/chat/completions with "model": "openai/gpt-5.4-mini". Existing OpenAI SDKs (Python, Node, etc.) work by changing the base URL and API key.

Can I try GPT 5.4 Mini for free?

Yes, GPT 5.4 Mini is available on the free tier. New accounts get 10,000 free credits — enough for several hundred calls depending on length. No credit card required to sign up.