Boogu Image Text to Image generates high-quality images from bilingual English and Chinese text prompts, supporting flexible text-to-image creation with strong prompt understanding. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.06per run·~16 / $1

A professional young foreign woman, front-facing upper body portrait, standing in a clean futuristic studio, wearing a white blazer and light gray inner top, calm confident expression, direct eye contact, slight smile, soft cinematic lighting, blue technology background, realistic skin texture, highly detailed face, premium AI presenter style, photorealistic

A foreign female jazz singer in a smoky vintage club, elegant black dress, classic microphone, warm amber spotlight, soft curls, emotional eyes, cinematic 1950s portrait, realistic film photography, shallow depth of field
Boogu Image Text-to-Image generates high-quality images from detailed English or Chinese prompts. It supports common aspect ratio presets and standard output formats, making it simple to create images for creative, marketing, and content workflows.
Bilingual prompting
Write prompts in English or Chinese to describe the image you want to generate.
Flexible aspect ratios
Choose square, portrait, or landscape ratios without manually setting custom width and height.
Simple generation controls
Keep the workflow focused on prompt, aspect ratio, and output format.
Standard image output
Generated images are returned as URLs in the standard WaveSpeed prediction response.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text prompt describing the image to generate. English and Chinese are supported. |
| image_size | No | Output aspect ratio preset. Supported values include 1:1, 16:9, 9:16, 4:3, and 3:4. Default: 1:1. |
| output_format | No | Output image format: jpeg or png. Default: jpeg. |
1:1, 16:9, 9:16, 4:3, or 3:4 based on your target layout.jpeg for general-purpose images or png when you need PNG output.| Aspect Ratio | Price |
|---|---|
| 1:1 | $0.06 |
| 16:9 | $0.04 |
| 9:16 | $0.04 |
| 4:3 | $0.05 |
| 3:4 | $0.05 |
1:1 for balanced square images.9:16 for vertical mobile content and 16:9 for widescreen layouts.4:3 or 3:4 for poster-like or editorial compositions.jpeg for smaller general-purpose outputs and png when PNG output is required.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/boogu-image/text-to-image with your input as JSON. The endpoint returns a prediction id. Start polling the result endpoint around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. On completed, read URLs from data.outputs. Examples for Boogu Image Text To Image below.
# Submit the prediction
curl --fail-with-body --connect-timeout 10 --max-time 60 \
-X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/boogu-image/text-to-image" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"output_format": "jpeg"
}'
# Wait at least 2 seconds, then poll. Safe GET requests may be retried.
curl --fail-with-body --connect-timeout 10 --max-time 30 \
--retry 4 --retry-all-errors --retry-delay 1 \
-X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# Start at 2 seconds and increase the interval for long-running tasks.
# Stop on completed, failed, cancelled, or timeout.// npm install wavespeed
const { Client } = require('wavespeed');
const apiKey = process.env.WAVESPEED_API_KEY;
if (!apiKey) throw new Error('Set WAVESPEED_API_KEY');
const client = new Client(apiKey, {
maxConnectionRetries: 5,
retryInterval: 1.0,
});
try {
const result = await client.run("wavespeed-ai/boogu-image/text-to-image", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"output_format": "jpeg"
}, {
timeout: 3600,
pollInterval: 2.0,
});
console.log(result.outputs);
} catch (error) {
console.error('Generation failed:', error);
process.exitCode = 1;
}# pip install wavespeed
import os
from wavespeed import Client
client = Client(
api_key=os.environ["WAVESPEED_API_KEY"],
max_connection_retries=5,
retry_interval=1.0,
)
try:
output = client.run(
"wavespeed-ai/boogu-image/text-to-image",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"output_format": "jpeg"
},
timeout=3600.0,
poll_interval=2.0,
)
print(output["outputs"])
except Exception as error:
raise SystemExit(f"Generation failed: {error}") from errorBoogu Image Text To Image is a WaveSpeedAI model for image generation, exposed as a REST API on WaveSpeedAI. Boogu Image Text to Image generates high-quality images from bilingual English and Chinese text prompts, supporting flexible text-to-image creation with strong prompt understanding. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID. Poll the result endpoint starting around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. The playground generates production-oriented Python, JavaScript, and cURL examples with timeouts, transient-error handling, and safe GET retries. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/boogu-image-text-to-image.
Boogu Image Text To Image starts at $0.060 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `aspect_ratio`, `output_format`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/boogu-image-text-to-image.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.