Flux.1 Kontext | Pro
Generate and edit images using Flux Kontext Pro. Professional-grade image generation from text and image editing with reference images. A balanced option between speed and quality in the Flux Kontext family.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "flux-kontext-pro",
"version": "0.0.1",
"input": {
"prompt": "A cozy bookstore interior with warm lamp light, stacked vintage books, and a tabby cat sleeping on a windowsill",
"aspect_ratio": "16:9"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
match_input_image |
Output aspect ratio. Options: match_input_image, 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 4:5, 5:4, 21:9, 9:21, 2:1, 1:2 |
| input_image |
string |
- |
Reference image. Must be jpeg, png, gif, or webp |
| prompt |
string |
- |
Text description for generation or editing instruction |
| safety_tolerance |
integer |
6 |
Safety tolerance level |
| seed |
integer |
- |
Random seed for reproducible generation (min: 1, max: 1000000000000000000) |
Examples
Generate from text:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "flux-kontext-pro",
"version": "0.0.1",
"input": {
"prompt": "An isometric 3D render of a tiny pixel art village with a river, bridge, and windmill, soft pastel colors",
"aspect_ratio": "1:1",
"seed": 42
}
}'
Edit an existing image:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "flux-kontext-pro",
"version": "0.0.1",
"input": {
"input_image": "https://example.com/landscape.jpg",
"prompt": "Add a hot air balloon floating in the sky and change the season to autumn with orange and red foliage",
"aspect_ratio": "match_input_image"
}
}'
Related Models
Documentation
1---2name: flux-kontext-pro3description: Flux.1 Kontext | Pro. Generate and edit images using Flux Kontext Pro. Professional AI image generation and editing. Triggers: flux kontext pro, kontext pro, flux pro, professional image edit, flux image generation, kontext pro edit4---56# Flux.1 Kontext | Pro78Generate and edit images using Flux Kontext Pro. Professional-grade image generation from text and image editing with reference images. A balanced option between speed and quality in the Flux Kontext family.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "flux-kontext-pro",20 "version": "0.0.1",21 "input": {22 "prompt": "A cozy bookstore interior with warm lamp light, stacked vintage books, and a tabby cat sleeping on a windowsill",23 "aspect_ratio": "16:9"24 }25 }'26```2728## Parameters2930| Parameter | Type | Default | Description |31|-----------|------|---------|-------------|32| aspect_ratio | string | match_input_image | Output aspect ratio. Options: `match_input_image`, `1:1`, `16:9`, `9:16`, `4:3`, `3:4`, `3:2`, `2:3`, `4:5`, `5:4`, `21:9`, `9:21`, `2:1`, `1:2` |33| input_image | string | - | Reference image. Must be jpeg, png, gif, or webp |34| prompt | string | - | Text description for generation or editing instruction |35| safety_tolerance | integer | 6 | Safety tolerance level |36| seed | integer | - | Random seed for reproducible generation (min: 1, max: 1000000000000000000) |3738## Examples3940**Generate from text:**41```bash42curl -X POST https://api.eachlabs.ai/v1/prediction \43 -H "Content-Type: application/json" \44 -H "X-API-Key: $EACHLABS_API_KEY" \45 -d '{46 "model": "flux-kontext-pro",47 "version": "0.0.1",48 "input": {49 "prompt": "An isometric 3D render of a tiny pixel art village with a river, bridge, and windmill, soft pastel colors",50 "aspect_ratio": "1:1",51 "seed": 4252 }53 }'54```5556**Edit an existing image:**57```bash58curl -X POST https://api.eachlabs.ai/v1/prediction \59 -H "Content-Type: application/json" \60 -H "X-API-Key: $EACHLABS_API_KEY" \61 -d '{62 "model": "flux-kontext-pro",63 "version": "0.0.1",64 "input": {65 "input_image": "https://example.com/landscape.jpg",66 "prompt": "Add a hot air balloon floating in the sky and change the season to autumn with orange and red foliage",67 "aspect_ratio": "match_input_image"68 }69 }'70```7172## Related Models7374- [Flux.1 Kontext | Max](../flux-kontext-max/) - Highest quality tier75- [Flux Kontext | Pro | Multi Image](../multi-image-kontext-pro/) - Pro with multi-image support76- [Flux.1 Kontext Dev Lora](../flux-kontext-dev-lora/) - Custom LoRA support7778## Documentation7980- [each::labs Docs](https://docs.eachlabs.ai)81- [API Reference](https://docs.eachlabs.ai/api/overview)