Skip to documentation
MakeInfluencer.ai
v1

Alibaba · image model

Qwen Image 2.0 Pro Edit API

Edit characters, products, outfits, and scenes with Qwen Image 2.0 Pro Edit through a hosted REST API.

Endpoint overview

POSThttps://www.makeinfluencer.ai/api/v1/models/qwen-image-2-pro-edit/generations

Model ID

qwen-image-2-pro-edit

Typical time

12s

Sample quote

3,509 credits

The displayed price is input-specific

The sample quote is High-detail image editing with Qwen Image 2.0 Pro. Preview your exact payload before generating; previews do not charge.

Create a generation

Send the model fields inside input. The request returns HTTP 202 with an owned generation ID.

cURL
curl --request POST \
  https://www.makeinfluencer.ai/api/v1/models/qwen-image-2-pro-edit/generations \
  --header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
  --header "Idempotency-Key: qwen-image-2-pro-edit-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"
    ],
    "aspectRatio": "1:1"
  }
}'

Model parameters

FieldTypeDefaultAccepted values
imageUrlsrequiredimageArrayUp to 6 items
promptrequiredtext
seednumber-1-1 – 2147483647
aspectRatioenummatch_input_imagematch_input_image, 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3

The same contract is available fromGET /models/qwen-image-2-pro-edit for server-side validation and dynamic tooling.

Preview credits

POST · no charge
curl --request POST \
  https://www.makeinfluencer.ai/api/v1/models/qwen-image-2-pro-edit/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"
    ],
    "aspectRatio": "1:1"
  }
}'

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

GET · image
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 2.0 Pro Edit API FAQ

How much does the Qwen Image 2.0 Pro Edit API cost?

The documented sample request costs 3,509 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 2.0 Pro Edit API use a separate balance?

No. REST, MCP, and the MakeInfluencer dashboard use the same account credit balance.

How do I receive Qwen Image 2.0 Pro Edit 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.