# FLUX.1 Krea [dev] - Core.Today AI API > Photorealistic image generation that specifically avoids the 'AI look', producing natural-looking images indistinguishable from real photographs. - **Provider**: Krea AI - **Model ID**: black-forest-labs/flux-krea-dev - **Category**: Image Generation - **Credits**: 58 per image - **Speed**: Medium - **Quality**: High ## Features - Photorealistic output without AI artifacts - Natural-looking image generation - Avoids typical AI aesthetic tells - High-quality texture and detail ## Use Cases - Stock photography replacement - Realistic product mockups - Editorial and journalistic imagery - Social media content that looks authentic ## API Endpoint Base URL: https://api.core.today/v1 Create Prediction: POST /predictions Get Status: GET /predictions/{job_id} ## Authentication Header: X-API-Key: YOUR_API_KEY ## Input Parameters ### Required - **prompt**: string - Text description of the image to generate ### Optional - **aspect_ratio**: string (default: 1:1) - Aspect ratio for the generated image Options: 1:1, 16:9, 21:9, 3:2, 2:3, 4:5, 5:4, 3:4, 4:3, 9:16, 9:21 - **image**: string - Input image URL for image-to-image mode - **prompt_strength**: number (default: 0.8) - Prompt strength when using img2img. 1.0 corresponds to full destruction of information in image - **num_outputs**: integer (default: 1) - Number of outputs to generate - **num_inference_steps**: integer (default: 28) - Number of denoising steps (recommended: 28-50) - **guidance**: number (default: 3) - Guidance for generated image (lower values = more realistic, good values: 2, 2.5, 3, 3.5) - **seed**: integer - Random seed for reproducibility - **output_format**: string (default: webp) - Format of the output images Options: webp, jpg, png - **output_quality**: integer (default: 80) - Quality of output images (0-100) - **disable_safety_checker**: boolean (default: false) - Disable safety checker for generated images. - **go_fast**: boolean (default: true) - Run faster predictions with additional optimizations - **megapixels**: string (default: 1) - Approximate megapixels for output Options: 1, 0.25 ## Examples ### Natural Portrait Generate a photorealistic portrait without AI look ```json { "model": "black-forest-labs/flux-krea-dev", "input": { "prompt": "Candid photograph of a barista making latte art in a cozy coffee shop, natural window lighting, shot on Canon EOS R5, shallow depth of field", "image_size": "portrait_4_3", "num_inference_steps": 28, "guidance_scale": 3.5 } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending | processing | completed | failed", "result": "URL or data (when completed)" } ``` ## Usage Flow 1. POST /predictions with model and input -> receive job_id 2. GET /predictions/{job_id} -> poll until status is completed or failed 3. Result contains output URL(s) ## Tips - Describe the scene as if it were a real photograph for best results - Mention camera models and lens types for extra realism - Use natural lighting descriptions to avoid the AI look - Perfect for content that needs to look authentically photographed