Skip to main content
Back to API Platform

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.

Image Generation
Editing
Content moderation disabled
Credit Cost
1 credit
Type
image

API Endpoint

POST
/api/v1/models/boogu-image/run

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
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

1:1
4:3
3:4
16:9
9:16

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
View Details

a cozy bookstore cafe interior, warm lighting, hanging plants, wooden shelves

1 credits
43.9s
a serene mountain lake at sunrise, mirror reflection, soft pastel sky
View Details

a serene mountain lake at sunrise, mirror reflection, soft pastel sky

1 credits
28.5s
a majestic snow leopard resting on a rocky cliff at golden hour
View Details

a majestic snow leopard resting on a rocky cliff at golden hour

1 credits
16.3s
a butterfly resting on a blooming sunflower, vivid macro photography
View Details

a butterfly resting on a blooming sunflower, vivid macro photography

1 credits
15.6s
a classic sports car parked on a scenic coastal mountain road at sunset
View Details

a classic sports car parked on a scenic coastal mountain road at sunset

1 credits
15.6s
a starry night sky and the milky way over rolling desert sand dunes
View Details

a starry night sky and the milky way over rolling desert sand dunes

1 credits
15.8s
a colorful farmers market stall overflowing with fresh fruit and vegetables
View Details

a colorful farmers market stall overflowing with fresh fruit and vegetables

1 credits
15.6s
a delicate bonsai tree on a minimalist desk under soft studio lighting
View Details

a delicate bonsai tree on a minimalist desk under soft studio lighting

1 credits
15.8s
a charming European cobblestone street with cafe tables and flower boxes
View Details

a charming European cobblestone street with cafe tables and flower boxes

1 credits
15.8s
a misty pine forest with golden sun rays breaking through the tall trees
View Details

a misty pine forest with golden sun rays breaking through the tall trees

1 credits
15.6s
a vibrant coral reef teeming with tropical fish, crisp underwater photography
View Details

a vibrant coral reef teeming with tropical fish, crisp underwater photography

1 credits
15.7s
a lighthouse on a rugged rocky coast during a dramatic orange sunset
View Details

a lighthouse on a rugged rocky coast during a dramatic orange sunset

1 credits
15.9s
a cup of coffee with delicate latte art on a rustic wooden table, morning light
View Details

a cup of coffee with delicate latte art on a rustic wooden table, morning light

1 credits
15.6s
a tropical beach with turquoise water and leaning palm trees, aerial view
View Details

a tropical beach with turquoise water and leaning palm trees, aerial view

1 credits
24.9s
a cozy log cabin in a snowy pine forest, warm light glowing in the windows at night
View Details

a cozy log cabin in a snowy pine forest, warm light glowing in the windows at night

1 credits
18.7s
a hot air balloon festival at dawn, colorful balloons drifting over a green valley
View Details

a hot air balloon festival at dawn, colorful balloons drifting over a green valley

1 credits
37.7s
a golden retriever puppy playing in a sunlit summer meadow
View Details

a golden retriever puppy playing in a sunlit summer meadow

1 credits
25.3s
a tranquil Japanese garden with a koi pond and stone lanterns in autumn
View Details

a tranquil Japanese garden with a koi pond and stone lanterns in autumn

1 credits
28.2s
a field of lavender under a dramatic cloudy sky, rolling hills to the horizon
View Details

a field of lavender under a dramatic cloudy sky, rolling hills to the horizon

1 credits
40.3s
a steaming bowl of ramen with soft-boiled egg, detailed food photography
View Details

a steaming bowl of ramen with soft-boiled egg, detailed food photography

1 credits
40.3s
a futuristic city skyline at dusk, neon reflections on wet streets
View Details

a futuristic city skyline at dusk, neon reflections on wet streets

1 credits
40.4s
a cozy bookstore cafe interior, warm lighting, hanging plants, wooden shelves
View Details

a cozy bookstore cafe interior, warm lighting, hanging plants, wooden shelves

1 credits
43.8s
a serene mountain lake at sunrise, mirror reflection, soft pastel sky
View Details

a serene mountain lake at sunrise, mirror reflection, soft pastel sky

1 credits
28.4s
a majestic snow leopard resting on a rocky cliff at golden hour
View Details

a majestic snow leopard resting on a rocky cliff at golden hour

1 credits
15.9s
A serene mountain lake at sunrise, mirror-still water reflecting snow-capped peaks, soft golden light, ultra-detailed landscape photography
View Details

A serene mountain lake at sunrise, mirror-still water reflecting snow-capped peaks, soft golden light, ultra-detailed landscape photography

1 credits
16.0s
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."
View Details

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."

1 credits
15.7s

Code Examples

Copy and paste to get started

bash
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)

json
{
  "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

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "images": [
      "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
    ]
  },
  "creditCost": 1,
  "expiresAt": "2025-01-23T12:00:00Z"
}