Nvidia Cosmos 3 Super Text To Image
Playground
Try it on WavespeedAI!NVIDIA Cosmos 3 Super Text to Image is a fast AI image generation model that creates high-quality images from text prompts with configurable image size, inference steps, guidance, and output count. Ready-to-use REST inference API for creative design, marketing visuals, product mockups, concept art, brand assets, social media content, and professional text-to-image workflows with simple integration, no coldstarts, and affordable pricing.
Features
NVIDIA Cosmos 3 Super Text-to-Image
NVIDIA Cosmos 3 Super Text-to-Image generates high-quality images from natural-language prompts with support for negative prompting, size presets, inference step control, guidance scaling, and flexible output formats. It is suitable for portrait generation, editorial visuals, concept art, marketing creatives, and other prompt-driven image generation workflows.
Why Choose This?
-
High-quality text-to-image generation Create polished, detailed images from natural-language prompts.
-
Negative prompt support Use
negative_promptto suppress unwanted artifacts, styles, or scene elements. -
Flexible generation controls Adjust
num_inference_stepsandguidance_scaleto balance quality, fidelity, and generation behavior. -
Preset sizing Use
sizepresets for predictable output framing and composition. -
Multiple output formats Export the result in supported formats such as
jpeg. -
Production-ready API Suitable for editorial visuals, concept exploration, commercial content, and creative ideation workflows.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text prompt describing the image you want to generate. |
| negative_prompt | No | Text description of elements or qualities you want to avoid in the result. |
| size | No | Output size preset, such as 1:1. |
| num_inference_steps | No | Number of inference steps used during generation. |
| guidance_scale | No | Controls how strongly the model follows the prompt. |
| output_format | No | Output image format, such as jpeg. |
How to Use
- Write your prompt — describe the subject, style, lighting, mood, and composition you want.
- Add a negative prompt (optional) — specify anything you want the model to avoid.
- Choose size (optional) — select the output aspect or size preset.
- Adjust generation settings (optional) — tune
num_inference_stepsandguidance_scaleas needed. - Choose output format (optional) — select the format that best fits your workflow.
- Submit — run the model and download the generated image.
Example Prompt
A photorealistic high-fashion portrait of an adult female model standing in a minimalist art gallery, sculptural black dress, polished concrete floor, large abstract paintings, soft museum lighting, confident elegant pose, luxury editorial photography, clean composition, ultra-detailed
Pricing
Just $0.04 per image.
Billing Rules
- Each generated image costs $0.04
- Pricing is fixed per image
size,num_inference_steps,guidance_scale, andoutput_formatdo not affect pricing
Best Use Cases
- Portrait generation — Create polished editorial or studio-style portraits.
- Fashion and luxury visuals — Generate refined commercial and magazine-style imagery.
- Concept art — Explore visual ideas and art directions quickly.
- Marketing creatives — Produce ad visuals, campaign concepts, and branded content.
- Prompt-based ideation — Iterate on scenes, outfits, settings, and visual moods from text.
Pro Tips
- Be specific in your prompt about subject, environment, lighting, and style.
- Use
negative_promptwhen you want to suppress clutter, artifacts, or undesired aesthetics. - Increase
num_inference_stepswhen you want more refined results, if generation time is acceptable. - Adjust
guidance_scalewhen you want tighter prompt adherence. - Start with the default settings first, then tune generation controls only if needed.
Notes
promptis required.negative_promptis optional but useful for tighter control.- Pricing is fixed at $0.04 per image.
- Better prompts usually improve both consistency and visual quality.
Related Models
- Other NVIDIA image generation workflows — Useful when you need different quality, speed, or control trade-offs.
- Prompt-based visual generation models — Useful when you want alternate image generation styles or rendering characteristics.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/nvidia/cosmos-3-super/text-to-image" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"negative_prompt": "",
"size": "1:1",
"num_inference_steps": 28,
"guidance_scale": 4,
"output_format": "jpeg"
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | Text prompt describing the image to generate. | |
| negative_prompt | string | No | - | Content to steer the generation away from. | |
| size | string | No | 1:1 | 1:1, 3:4, 9:16, 4:3, 16:9 | Output image size preset. |
| num_inference_steps | integer | No | 28 | 1 ~ 50 | Number of denoising steps. |
| guidance_scale | number | No | 4 | 0.0 ~ 20.0 | Classifier-free guidance scale. |
| output_format | string | No | jpeg | jpeg, png | The format of the generated image. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content. |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |