← All Models
GPT-5 Mini
OpenAI's fast and affordable model. Great for everyday tasks, summaries, and translations.
Web Search
Code Interpreter
File Search
Specifications
| Provider | OpenAI |
| Category | Text |
| Context window | 400K tokens |
Pricing (Starter tier)
32.50 credits / 1M input tokens
260.00 credits / 1M output tokens
Higher tiers get volume discounts. See tiers
Quick Start
curl -X POST https://query.genx.sh/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5-mini",
"params": {
"prompt": "Translate this to French: Hello, how are you?"
}
}'
Example Request Body
// POST /api/v1/generate
{
"model": "gpt-5-mini",
"params": {
"prompt": "Translate this to French: Hello, how are you?"
}
}