Bria Fibo Colorize
Playground
Try it on WavespeedAI!Bria Colorize adds vivid colors to B&W photos or converts color to B&W with various style presets. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Features
Bria Fibo Colorize
Bria Fibo Colorize is an AI-powered image colorization and color styling model. Upload any image and choose a color style — the model applies professional color grading with options ranging from contemporary and vivid colors to black-and-white and vintage sepia tones.
Why Choose This?
-
Multiple color styles Four distinct options: contemporary color, vivid color, black and white, and sepia vintage.
-
Automatic colorization Transform black-and-white photos into full color images.
-
Professional color grading Apply cinematic and artistic color styles to any image.
-
Simple workflow Just upload an image and select a style — no complex parameters needed.
-
Fast processing Get results in seconds for quick iteration.
Parameters
| Parameter | Required | Description |
|---|---|---|
| image | Yes | Source image to colorize or restyle (URL or upload) |
| style | Yes | Color style: contemporary color, vivid color, black and white colors, sepia vintage |
How to Use
- Upload your image — provide the image you want to colorize or restyle.
- Select style — choose from the four available color styles.
- Run — submit and download your colorized image.
Pricing
| Output | Cost |
|---|---|
| Per image | $0.04 |
Style Options
| Style | Description |
|---|---|
| contemporary color | Modern, balanced color grading with natural tones |
| vivid color | Enhanced saturation and vibrant, punchy colors |
| black and white colors | Classic monochrome conversion with rich contrast |
| sepia vintage | Warm, nostalgic sepia tones for a vintage look |
Best Use Cases
- Photo Restoration — Colorize old black-and-white family photos.
- Creative Editing — Apply artistic color styles to modern images.
- Social Media Content — Create visually distinctive posts with unique color grading.
- Vintage Effects — Add nostalgic sepia or B&W looks to photos.
- Batch Styling — Apply consistent color treatment across multiple images.
Pro Tips
- Use “contemporary color” for natural, realistic colorization of B&W photos.
- Choose “vivid color” for eye-catching social media content.
- “Black and white colors” is great for creating dramatic, timeless portraits.
- “Sepia vintage” works well for historical or nostalgic themes.
- Upload high-quality source images for best colorization results.
Notes
- Both image and style are required fields.
- Ensure uploaded image URLs are publicly accessible.
- Works with both color and black-and-white source images.
Related Models
- Bria Fibo Reseason — Change the season or weather of images.
- Bria Fibo Image Blend — Blend multiple images together.
- Bria Fibo Restore — Restore and enhance old or damaged photos.
- Bria Fibo Relight — Relight images with different lighting conditions.
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/bria/fibo/colorize" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"style": "contemporary color"
}'
# 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 |
|---|---|---|---|---|---|
| image | string | Yes | - | The source image to colorize. | |
| style | string | Yes | contemporary color | contemporary color, vivid color, black and white colors, sepia vintage | The colorization style to apply. |
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.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| 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 |