Skip to main content
OpenAIFastHigh

GPT Image 1 Mini

Cheaper, faster tier of OpenAI's GPT Image 1, served through the LLM gateway via the OpenAI Images API. Same token-billed generation flow at a fraction of the cost - ideal for drafts and high-volume image generation.

8 credits
per image (approx, 1024ร—1024)
Cheaper, faster image generation tier of GPT Image 1
Token-based billing: text input tokens (3,716 credits/1M) and image output tokens (14,864 credits/1M) are billed separately
Natively multimodal generation flow (text and image inputs, image outputs)
Served through the LLM gateway via the OpenAI Images API

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Quick Start

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "gpt-image-1-mini",
  "input": {
    "model": "gpt-image-1-mini",
    "prompt": "A minimalist flat-design logo concept for a coffee brand, warm palette",
    "size": "1024x1024"
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
modelstringYesgpt-image-1-miniModel identifier
promptstringYes-A text description of the desired image
sizestringNoautoOutput image size
1024x10241536x10241024x1536auto
qualitystringNoautoRendering quality. Higher quality produces more image output tokens and therefore costs more
lowmediumhighauto
backgroundstringNoautoSet whether the background is transparent, opaque, or chosen automatically
autotransparentopaque
output_formatstringNopngOutput image format
pngjpegwebp
nintegerNo1Number of images to generate. Each image bills its own output tokens

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Draft Iteration

Cheap, fast image draft via the OpenAI Images API

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "gpt-image-1-mini",
  "input": {
    "model": "gpt-image-1-mini",
    "prompt": "A minimalist flat-design logo concept for a coffee brand, warm palette",
    "size": "1024x1024"
  }
}'

Tips & Best Practices

1Works with the OpenAI SDK - set base_url to https://ai.api.core.today/llm/openai/v1 and use client.images.generate()
2Billing is token-based: text input tokens at 3,716 credits/1M plus image output tokens at 14,864 credits/1M - larger sizes and higher quality produce more output tokens
3The ~8 credits per image figure assumes a 1024ร—1024 output; treat it as an estimate, not a flat rate
4Roughly 5x cheaper than GPT Image 1 - iterate here, then switch models for the final render

Use Cases

Low-cost draft iteration before a final GPT Image 1 render
High-volume image generation pipelines
Thumbnails and placeholder art
Rapid prompt experimentation

Model Info

ProviderOpenAI
Version-
CategoryImage Generation
Price8 credits

API Endpoint

POST /llm/openai/v1/images/generations
Try in ConsoleBack to Docs