Alibaba · image model
Qwen Image Edit Plus API
Use the Qwen Image Edit Plus API for hosted AI image generation with model-aware inputs, asynchronous jobs, and MakeInfluencer credits.
Endpoint overview
https://www.makeinfluencer.ai/api/v1/models/qwen-image-edit-plus/generationsModel ID
qwen-image-edit-plusTypical time
16s
Sample quote
1,504 credits
The displayed price is input-specific
Create a generation
Send the model fields inside input. The request returns HTTP 202 with an owned generation ID.
curl --request POST \
https://www.makeinfluencer.ai/api/v1/models/qwen-image-edit-plus/generations \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
--header "Idempotency-Key: qwen-image-edit-plus-001" \
--header "Content-Type: application/json" \
--data '{
"input": {
"prompt": "Editorial portrait of a fashion creator in a sunlit studio",
"imageUrls": [
"https://example.com/x.jpg"
]
}
}'Model parameters
| Field | Type | Default | Accepted values |
|---|---|---|---|
imageUrlsrequired | imageArray | — | Up to 5 items |
promptrequired | text | — | — |
seed | number | 0 | — |
go_fast | boolean | true | — |
aspectRatio | enum | match_input_image | 1:1, 16:9, 9:16, 4:3, 3:4, match_input_image |
output_format | enum | webp | webp, jpg, png |
output_quality | number | 95 | 0 – 100 |
The same contract is available fromGET /models/qwen-image-edit-plus for server-side validation and dynamic tooling.
Preview credits
curl --request POST \
https://www.makeinfluencer.ai/api/v1/models/qwen-image-edit-plus/preview-credits \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"input": {
"prompt": "Editorial portrait of a fashion creator in a sunlit studio",
"imageUrls": [
"https://example.com/x.jpg"
]
}
}'A valid response returns the exact credit cost and pricing description. The dashboard, REST API, and MCP use one balance at the same model price.
Poll the result
curl \
https://www.makeinfluencer.ai/api/v1/generations/image/GENERATION_ID \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY"Poll until terminal is true. On success, ready is true. Readurl for video orurls for image output. See the polling guide for statuses and backoff.
Qwen Image Edit Plus API FAQ
How much does the Qwen Image Edit Plus API cost?
The documented sample request costs 1,504 MakeInfluencer credits. Final cost depends on the exact model inputs, and the preview-credits endpoint returns an exact quote without charging.
Does the Qwen Image Edit Plus API use a separate balance?
No. REST, MCP, and the MakeInfluencer dashboard use the same account credit balance.
How do I receive Qwen Image Edit Plus results?
Creation returns HTTP 202 with a generation ID. Poll the image generation-status endpoint until terminal is true. On success, ready is true and the response contains the output URL.