Flux Dev

Flux Dev is a high-speed image generation API designed for rapid prototyping and development workflows.

Features

  • High-Speed Generation: Optimized for fast image generation with minimal latency
  • Developer-Focused: Designed specifically for development and prototyping needs
  • Flexible Controls: Comprehensive parameter settings for fine-tuned results
  • HTTP API Access: Simple integration via RESTful API endpoints

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task

Submit a task to generate an image using the Flux Dev Fast API.

curl --location --request POST 'https://api.wavespeed.ai/api/v2/wavespeed-ai/flux-dev' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data-raw '{
  "prompt": "A futuristic cityscape with flying cars and neon lights",
  "image": "https://example.com/input_image.jpg",
  "strength": 0.6,
  "size": "1024*1024",
  "num_inference_steps": 28,
  "guidance_scale": 5.0,
  "num_images": 1,
  "seed": -1,
  "enable_safety_checker": true
}'

Query Result

Check the status and retrieve the result of a previously submitted task.

curl --location --request GET 'https://api.wavespeed.ai/api/v2/predictions/{request_id}/result' \
--header 'Authorization: Bearer YOUR_API_KEY'

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
promptstringNo""-Text description of the image to generate
imagestringNo""-Base64 encoded image or image URL for image-to-image generation
strengthfloatNo0.60.0 ~ 1.0Strength of the image-to-image transformation
lorasarrayNo[]max 5 itemsList of LoRA models to apply
sizestringNo”1024*1024”512 ~ 1536 per dimensionImage dimensions in width*height format
num_inference_stepsintNo281 ~ 50Number of inference steps for dev model
seedintNo-1-Random seed for reproducible results. -1 for random seed
guidance_scalefloatNo5.00.0 ~ 10.0Guidance scale for generation
num_imagesintNo11 ~ 4Number of images to generate
enable_safety_checkerbooleanNotrue-Enable safety checker for generated content

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction (e.g., wavespeed-ai/wan-2.1/t2v-480p)
data.outputsarrayArray of URLs to the generated content (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.has_nsfw_contentsarrayArray of boolean values indicating NSFW detection for each output
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created
data.errorstringError message (empty if no error occurred)
data.executionTimeintegerExecution time in milliseconds

Result Query Parameters

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction
data.modelstringModel ID used for the prediction (e.g., wavespeed-ai/wan-2.1/t2v-480p)
data.outputsarrayArray of URLs to the generated content (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.has_nsfw_contentsarrayArray of boolean values indicating NSFW detection for each output
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created
data.errorstringError message (empty if no error occurred)
data.executionTimeintegerExecution time in milliseconds

Result Query Parameters

  • Maximum requests per minute: 120 (optimized for development workflows)
  • Maximum concurrent requests: 20
  • Maximum image dimensions: 1536x1536
  • Response timeout: 30 seconds
  • Designed for development use - consider using other Flux APIs for production