Alibaba (Qwen) / qwen-image-edit-plus-2025-10-30
Qwen Image Edit Plus 2025 10 30
Qwen Image Edit Plus 2025 10 30 handles image editing and style transfer for subject-preserving edits, backgrounds, and local changes.
Context
0K
tokens
Input
$0.036
/ image
Output
$0.036
/ image
Quality
#200
Elo 1000
Overview
What this model is good for
Qwen Image Edit Plus 2025 10 30 handles image editing and style transfer for subject-preserving edits, backgrounds, and local changes.
Model capabilities
Image output
Can generate or return images through media-generation workflows.
Model maker
Model maker and access
This section shows the model maker, SeaLink model ID, protocol, and pricing information.
Alibaba (Qwen)
Called through SeaLink's unified account, balance, and OpenAI-compatible API.
Protocol
Media generation API
Base URL: https://test.sealink.io/v1
Pricing
Pricing and cost sense
Prices come from the current model catalog. Simple estimates help users judge whether the model fits production volume.
Actual billing follows usage logs and billing records; caching and media pricing depend on the endpoint.
API
Copy into your code
The model page should make it clear which model to copy, which base URL to use, and where to get an API Key.
model
qwen-image-edit-plus-2025-10-30base_url
https://test.sealink.io/v1Auth
Bearer $SEALINK_API_KEYcurl https://test.sealink.io/v1/images/generations \-H "Authorization: Bearer $SEALINK_API_KEY" \-H "Content-Type: application/json" \-d '{"model": "qwen-image-edit-plus-2025-10-30","prompt": "A serene lake at sunset, oil painting style","n": 1,"size": "1024x1024"}'
import requestsurl = "https://test.sealink.io/v1/images/generations"headers = {"Authorization": f"Bearer {api_key}"}payload = {"model": "qwen-image-edit-plus-2025-10-30","prompt": "A serene lake at sunset, oil painting style","n": 1,"size": "1024x1024",}resp = requests.post(url, json=payload, headers=headers)data = resp.json()print(data["data"][0]["url"])
const resp = await fetch("https://test.sealink.io/v1/images/generations", {method: "POST",headers: {"Authorization": `Bearer ${process.env.SEALINK_API_KEY}`,"Content-Type": "application/json",},body: JSON.stringify({model: "qwen-image-edit-plus-2025-10-30",prompt: "A serene lake at sunset, oil painting style",n: 1,size: "1024x1024",}),});const data = await resp.json();console.log(data.data[0].url);