Boogu Image API
Boogu Image — bilingual (EN/ZH) text-to-image generation with crisp detail and 2K output. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/boogu-image/runLLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/boogu-image.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
image_size | enum | square_hd |
negative_prompt | string | - |
num_images | integer | 1 |
num_inference_steps | integer | 30 |
guidance_scale | number | 4 |
seed | integer | - |
Supported Aspect Ratios
See also
Related endpoints on this model — you may need a different apiId for a different operation (e.g. image edit vs generation).
Example Outputs
Real outputs generated by this model
a cozy bookstore cafe interior, warm lighting, hanging plants, wooden shelves
a serene mountain lake at sunrise, mirror reflection, soft pastel sky
a majestic snow leopard resting on a rocky cliff at golden hour
a butterfly resting on a blooming sunflower, vivid macro photography
a classic sports car parked on a scenic coastal mountain road at sunset
a starry night sky and the milky way over rolling desert sand dunes
a colorful farmers market stall overflowing with fresh fruit and vegetables
a delicate bonsai tree on a minimalist desk under soft studio lighting
a charming European cobblestone street with cafe tables and flower boxes
a misty pine forest with golden sun rays breaking through the tall trees
a vibrant coral reef teeming with tropical fish, crisp underwater photography
a lighthouse on a rugged rocky coast during a dramatic orange sunset
a cup of coffee with delicate latte art on a rustic wooden table, morning light
a tropical beach with turquoise water and leaning palm trees, aerial view
a cozy log cabin in a snowy pine forest, warm light glowing in the windows at night
a hot air balloon festival at dawn, colorful balloons drifting over a green valley
a golden retriever puppy playing in a sunlit summer meadow
a tranquil Japanese garden with a koi pond and stone lanterns in autumn
a field of lavender under a dramatic cloudy sky, rolling hills to the horizon
a steaming bowl of ramen with soft-boiled egg, detailed food photography
a futuristic city skyline at dusk, neon reflections on wet streets
a cozy bookstore cafe interior, warm lighting, hanging plants, wooden shelves
a serene mountain lake at sunrise, mirror reflection, soft pastel sky
a majestic snow leopard resting on a rocky cliff at golden hour
A serene mountain lake at sunrise, mirror-still water reflecting snow-capped peaks, soft golden light, ultra-detailed landscape photography
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
Code Examples
Copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/boogu-image/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A beautiful mountain landscape at golden hour",
"aspect_ratio": "1:1"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 1,
"creditsRemaining": 95,
"expiresAt": "2025-01-23T12:00:00Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 1,
"expiresAt": "2025-01-23T12:00:00Z"
}