Skip to main content
Back to API Platform

Flux Redux API

Black Forest Labs Flux Redux image variations — feed a source image, get stylistic riffs. Integrate this model via REST with endpoint docs, parameters, and code examples.

Image Generation
Img2Img
Credit Cost
1 credit
Type
Image

API Endpoint

POST
/api/v1/models/redux-flux/run

Test This Model

Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.

Parameters

Input parameters accepted by this model

ParameterTypeDefault
model
enum
Flux Redux Dev
redux_image
required
url
-
seed
number
-
num_outputs
integer
1
aspect_ratio
enum
1:1
output_format
enum
png
output_quality
integer
80
num_inference_steps
integer
28
megapixels
enum
1

Example Outputs

Real outputs generated by this model

View Details

1 credit
17.7s
View Details

1 credit
17.8s

Code Examples

Image variations — copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/redux-flux/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "redux_image": "https://...",
    "model": "Flux Redux Dev",
    "num_outputs": 2
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 1,
  "creditsRemaining": 95,
  "expiresAt": "2026-07-18T05:20:58Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "images": [
      "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
    ]
  },
  "creditCost": 1,
  "expiresAt": "2026-07-18T05:20:58Z"
}