curl --request POST \
--url https://api.modellix.ai/api/v1/openai/gpt-image-1.5-edit/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"images": [
{
"image_url": "https://example.com/input.png"
}
],
"prompt": "Convert to vintage style"
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task_abc123xyz",
"model_id": "gpt-image-2-edit"
}
}GPT Image 1.5 Edit balances performance and quality with transparent background support and input fidelity control. Supports multi-image editing (up to 16 images) and streaming output. Default quality is low when omitted.
curl --request POST \
--url https://api.modellix.ai/api/v1/openai/gpt-image-1.5-edit/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"images": [
{
"image_url": "https://example.com/input.png"
}
],
"prompt": "Convert to vintage style"
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task_abc123xyz",
"model_id": "gpt-image-2-edit"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.modellix.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Request payload for standard GPT Image Edit models.
Request payload for standard GPT Image Edit models.
Input image URL(s) to edit. Direct HTTPS URLs as string array. Supports up to 16 images for GPT Image models
1 - 16 elementsDirect image URL (https only)
["https://example.com/input.png"]Description of the desired edits, supports up to 32,000 characters
1 - 32000"Add a watercolor effect to this image"
Output image size. Preset resolutions only
1024x1024, 1536x1024, 1024x1536 "1024x1024"
Output quality level. 'low': fast draft (default), 'medium': balanced, 'high': best quality
low, medium, high "high"
Background transparency. 'transparent': transparent background (requires png or webp format), 'opaque': solid background, 'auto': model decides
transparent, opaque, auto "transparent"
Control fidelity to original input image. 'high': preserve original details, 'low': more creative freedom
high, low "high"