Models / Black Forest Labs
Image

FLUX1.1 [pro]

Advanced image generation model with FLUX.1-dev architecture, offering high-quality outputs for artistic and commercial use.

About model

FLUX1.1 [pro] generates high-quality images with improved speed, suited for commercial use, particularly beneficial for professionals requiring efficient and high-resolution image creation.

Quickstart guides
  • API usage

    • cURL
    • Python
    • Typescript

    Endpoint:

    black-forest-labs/FLUX.1.1-pro

    curl -X POST "https://api.together.xyz/v1/images/generations" \
      -H "Authorization: Bearer $TOGETHER_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "model": "black-forest-labs/FLUX.1.1-pro",
        "prompt": "Draw an anime style version of this image.",
        "width": 1024,
        "height": 768,
        "steps": 28,
        "n": 1,
        "response_format": "url",
        "image_url": "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png"
      }'
    
    from together import Together
    
    client = Together()
    
    imageCompletion = client.images.generate(
        model="black-forest-labs/FLUX.1.1-pro",
        width=1024,
        height=768,
        steps=28,
        prompt="Draw an anime style version of this image.",
        image_url="https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png",
    )
    
    print(imageCompletion.data[0].url)
    
    
    
    import Together from "together-ai";
    
    const together = new Together();
    
    async function main() {
      const response = await together.images.create({
        model: "black-forest-labs/FLUX.1.1-pro",
        width: 1024,
        height: 1024,
        steps: 28,
        prompt: "Draw an anime style version of this image.",
        image_url: "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png",
      });
    
      console.log(response.data[0].url);
    }
    
    main();
    
    
Related models
  • Model provider
    Black Forest Labs
  • Type
    Image
  • Main use cases
    Image Generation
  • Deployment
    Serverless
  • Price

    $0.04 / MP

  • Input modalities
    Text
  • Output modalities
    Image
  • Last updated
    October 30, 2025
  • External link
  • Category
    Image