Bria 3.2 API
Bria 3.2 — text-to-image with 9 aspect ratio presets at 1K resolution, optional image and prompt enhancement, and photography/art medium hints. 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/bria-3-2/runTest This Model
Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.
LLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/bria-3-2.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 | - |
negative_prompt | string | - |
aspect_ratio | enum | 1:1 |
num_outputs | integer | 1 |
medium | enum | auto |
prompt_enhancement | boolean | false |
seed | integer | - |
Supported Aspect Ratios
Example Outputs
Real outputs generated by this model
A dramatic desert canyon with layered red-rock formations, deep shadows, golden afternoon light, vast scale
A vibrant farmers-market stall overflowing with fresh fruit and vegetables, colorful, natural daylight
A cozy winter cabin glowing warmly in a snowy pine forest at twilight, smoke curling from the chimney, magical
A surfer riding a massive turquoise wave, spray flying, dynamic action sports photography, bright sunlight
A tranquil Zen garden with raked sand, smooth stones, and a single maple tree, minimalist and peaceful
A grand library with towering bookshelves and spiral staircases, warm golden light through tall windows
A cyberpunk street market at night, holographic signs, rain-slicked pavement, vibrant neon, atmospheric
A hot air balloon festival at dawn over rolling green hills, dozens of colorful balloons, wide landscape
A cute corgi puppy sitting in a basket of autumn leaves, warm golden light, adorable pet portrait
A Japanese cherry-blossom park in full bloom, petals drifting in the air, people strolling, gentle spring atmosphere
A geometric abstract composition of overlapping translucent shapes in soft pastel colors, modern minimalist art
A vintage red bicycle leaning against a sunlit brick wall covered in ivy, nostalgic warm tones
A lone lighthouse on a rocky coast during a stormy sunset, crashing waves, dramatic sky, moody seascape
A bowl of fresh ramen with a soft-boiled egg and green onions, steam rising, top-down food photography, appetizing
A whimsical treehouse village connected by rope bridges in a lush forest, magical storybook illustration style
A majestic snow leopard resting on a rocky cliff in the Himalayas, thick fur, piercing eyes, wildlife photography
An astronaut floating above Earth, the blue planet glowing below, scattered stars across deep space, photorealistic
A charming European cobblestone street with flower boxes and pastel buildings, soft morning light, travel photography
A field of lavender stretching to the horizon under a dramatic cloudy sky, golden hour, painterly soft focus
A macro close-up of a dewdrop on a green leaf at dawn, intricate detail, gentle bokeh background
A cozy bookstore cafe interior, warm lamplight, tall stacks of books, a steaming cup of coffee on a wooden table, inviting atmosphere
A futuristic city skyline at dusk, sleek glass towers, soft neon accents reflecting on wet streets, cinematic sci-fi concept art
A vibrant tropical coral reef teeming with colorful fish, crystal-clear turquoise water, sun rays filtering down, underwater photography
A serene mountain lake at sunrise, mirror-still water reflecting snow-capped peaks, soft golden light, ultra-detailed landscape photography
A serene mountain lake at sunrise, mirror-still water reflecting snow-capped peaks, soft golden light, ultra-detailed landscape photography
A cozy bookstore cafe interior, warm lamplight, tall stacks of books, a steaming cup of coffee on a wooden table, inviting atmosphere
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
Text → image — copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/bria-3-2/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A vast mirror-like salt flat at golden hour, cinematic",
"aspect_ratio": "3:2",
"num_outputs": 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": "2026-07-15T00:30:18Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 1,
"expiresAt": "2026-07-15T00:30:18Z"
}