Skip to main content
Back to API Platform

Magic Lighting API

Relight images with Magic Lighting, Nano Banana Pro/2, or Qwen Image Edit — multi-provider routing with per-model credit rates. 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/image-relighting/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
subject_image
required
url
-
prompt
string
-
light_source
string
-
model_type
enum
magic-lighting
number_of_images
integer
1
aspectRatio
enum
1:1
negative_prompt
string
-
appended_prompt
string
best quality
output_format
enum
png
width
string
1024
height
string
1024
steps
integer
25
cfg
number
2
highres_scale
number
1.5
highres_denoise
number
0.5
lowres_denoise
number
0.9
output_quality
integer
100
seed
integer
-

Example Outputs

Real outputs generated by this model

cinematic golden hour lighting from the left
View Details

cinematic golden hour lighting from the left

2 credits
15.3s

Code Examples

Magic lighting — copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/image-relighting/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "subject_image": "https://...",
    "prompt": "cinematic neon lighting",
    "model_type": "magic-lighting"
  }'

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:06Z"
}

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:06Z"
}