Creates an image generation for the provided prompt (OpenAI-compatible)
b64_json) by default or signed URLs (url) when response_format: "url".
POST https://nano-gpt.com/v1/images/generationsAuthorization: Bearer <API_KEY>Content-Type: application/jsonprompt (string, required): Text prompt to generate an image from.model (string, optional): Model ID (default hidream).n (integer, optional): Number of images to generate (default 1).size (string, optional): 256x256, 512x512, or 1024x1024.response_format (string, optional): b64_json (default) or url.user (string, optional): End-user identifier.imageDataUrl (string, optional): Base64 data URL for a single input image.imageDataUrls (array, optional): Multiple base64 data URLs for supported models.maskDataUrl (string, optional): Base64 mask data URL for inpainting.strength, guidance_scale, num_inference_steps, seed, kontext_max_mode.data[i] contains either b64_json (default) or url (when response_format: "url"), never both.response_format: "url", the API may still return b64_json if URL generation (upload/presign) fails, as a fallback.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Parameters for image generation
The text prompt to generate an image from
The model to use for generation
Number of images to generate
The size of the generated images
256x256, 512x512, 1024x1024 The format in which the generated images are returned. Use "b64_json" (default) to receive base64-encoded image bytes in data[i].b64_json, or "url" to receive a time-limited, signed download URL in data[i].url (expires after a short period, currently ~1 hour). Note: When requesting "url", the API may still return "b64_json" if URL generation (upload/presign) fails, as a fallback.
url, b64_json A unique identifier representing your end-user
Base64-encoded image data URL for img2img generation. Single image input for models that support image-to-image transformation. Format: data:image/[type];base64,[data]. Note: Direct URL input is not supported - images must be converted to base64 data URLs before submission.
"data:image/jpeg;base64,/9j/4AAQ..."
Array of base64-encoded image data URLs for models supporting multiple image inputs (e.g., flux-kontext, gpt-4o-image, gpt-image-1). Each URL must follow the format: data:image/[type];base64,[data]
[
"data:image/jpeg;base64,/9j/4AAQ...",
"data:image/png;base64,iVBORw0KGgo..."
]Base64-encoded mask image data URL for inpainting models (e.g., flux-lora/inpainting). White areas indicate regions to edit. Format: data:image/[type];base64,[data]
"data:image/png;base64,iVBORw0KGgo..."
Controls how much the output differs from the input image in img2img mode. Lower values produce outputs closer to the input.
0 <= x <= 1How closely the model follows the text prompt. Higher values result in images more closely aligned with the prompt.
0 <= x <= 20Number of denoising steps. More steps generally produce higher quality but take longer.
1 <= x <= 100Random seed for reproducible generation. Use the same seed with the same parameters to get identical results.
42
Enable enhanced context mode for flux-kontext model. Provides better understanding of input images.
Image generation response. Each data[i] contains either { url } or { b64_json }. When requesting response_format: "url", the API may fall back to returning { b64_json } if URL generation (upload/presign) fails.
Unix timestamp of when the image was created
List of generated images. Each entry contains either a hosted URL (data[i].url) or base64-encoded bytes (data[i].b64_json), never both.
{ "url": "https://...signed-url..." }Cost of the generation
Payment source used
Remaining balance after the generation