- Home
- Resources
- Integrations
- Qwen Cloud
n8n Qwen Cloud nodeConfigure Qwen Cloud in n8n.
Qwen Cloud puts Alibaba Cloud's Qwen models inside a workflow as an ordinary action node. The n8n Qwen Cloud node carries 5 operations across 3 resources: text completions, image analysis, image generation, and short videos from a prompt or a first frame. For people already running n8n.
Verified Trustpilot reviews · AI, automation & growth agency
What does the n8n Qwen Cloud node do?
The Qwen Cloud node calls models hosted on Qwen Cloud from inside a workflow. It runs like any other action node: one item comes in, one call goes out, the model's answer comes back as workflow data. Three resources sit behind it, Text, Image and Video, and 5 operations spread across them, from a plain completion to a short generated clip.
The first scenario is text that writes itself. A row lands in a spreadsheet, the node sends it to a Qwen model with a standing instruction, and the answer travels on to the next step. Pair it with Google Sheets on the way in and Slack on the way out and the whole loop stays inside n8n.
The second is visual triage. Support tickets arrive with photos, and the analyze operation answers a question about each one. Feed it the public URL of an attachment or the name of the binary field the file arrived in, ask what is in the picture, and route the reply. A stream of screenshots from Gmail becomes structured text.
The third is media production. One operation turns a prompt into an image, two more turn a prompt or a first frame into a short video, with a resolution tier, a duration and a choice between a single shot and a multi-shot narrative. Downloads are optional: leave the toggle off and only the URL comes back, which keeps the workflow light when the file goes straight to storage.
Now the alternative. This node has no sub-node ports, meaning nothing plugs underneath it the way a chat model plugs under a root node. It answers once per item and forgets. When the job needs memory across turns, or tools the model can call on its own, the root node is AI Agent with a chat model connected to it, and Qwen Cloud stays for the one-shot calls. Teams already standardized on OpenAI or Anthropic credentials can keep those nodes and add this one only where a Qwen model is wanted.
The limits are worth knowing before building. The node is at version 1, so older workflows may show fewer options. Model choice is a fixed list per operation, not free text. Video duration runs from 2 to 15 seconds, so nothing long form comes out of it. And every call is billed by Qwen Cloud under its own terms, which is a separate line from whatever n8n costs.
How do you connect Qwen Cloud to n8n?
- 01
Open the credential field on the node
Drop the Qwen Cloud node on the canvas and look at its credential field. A credential in n8n is a stored set of secrets, created once in the Credentials menu and reused by every workflow that needs it. This is where the node decides whether it talks to Qwen Cloud with an account of yours or through n8n itself.
- 02
Pick Gateway credits on n8n Cloud
On n8n Cloud, the credential field offers Use Gateway credits. Select it and the node runs without a Qwen Cloud account at all, which is the fastest way to test an operation before committing to anything. The workflow itself is identical either way, so nothing has to be rebuilt when the choice changes later.
- 03
Or register your own API key
The other path is a Qwen Cloud API key of your own, stored as a credential in n8n and selected on the node. Self-hosted instances take this route, since Gateway credits belong to n8n Cloud. Once saved, the same credential serves the text, image and video operations, so there is nothing to repeat per workflow.
Which operations does the node expose?
The Qwen Cloud node exposes 5 operations across 3 resources. For each one: the node as you configure it in n8n, the required fields, and our field notes.
| Resource | Analyze Image | Generate an Image | Generate Video From Image | Message a Model | Generate Video From Text |
|---|---|---|---|---|---|
| Text | ✓ | ||||
| Image | ✓ | ✓ | |||
| Video | ✓ | ✓ |
Operations index
Text
1 operationMessage a model
text.messageWhat you see in n8n
Notes & use cases
Sends a conversation to a Qwen model and returns the completion, which is how a workflow drafts, rewrites or classifies text without a separate service.
Key parameters
- Model: from
qwen3-max, described as the most capable, toqwen3.5-flash, the faster and more cost effective one. - Messages: the turns of the conversation, each with a Content string, often the expression
{{ $json.text }}that reads a field from the incoming item, and a Role ofuserorassistant. - System Message: the standing instruction, in the Options collection.
- Max Tools Iterations: the cap on tool-calling rounds, set to
0for unlimited.
Image
2 operationsAnalyze image
image.analyzeWhat you see in n8n
Notes & use cases
Asks a vision-language model a question about a picture and returns the answer as text, so an image stops being a dead end in the data.
Key parameters
- Input Type:
urlto point at a hosted file,binaryto read one the workflow already carries. - Image URL: required, the address of the image, such as
https://example.com/image.jpg. - Input Data Field Name: required, the input field holding the binary file,
datain most workflows. - Question: required, the instruction about the image.
- Model:
qwen3-vl-flashfor the fast vision-language model,qwen3-vl-plusfor the enhanced one.
Generate an image
image.generateWhat you see in n8n
Notes & use cases
Builds a picture from a written description, returning either the file itself or a link to it depending on one toggle.
Key parameters
- Prompt: required, the text describing the image to generate.
- Model:
z-image-turbofor a fast result,qwen-image-maxfor the most capable of the image models, withqwen-image,qwen-image-plusandwan2.6-t2iin between. - Download Image: on, the image comes back as binary data; off, only its URL does.
- Size: an Options field offering
1024*1024,720*1280and1280*720. - Prompt Extend: an Options toggle that automatically extends and enhances the prompt.
Video
2 operationsGenerate video from text prompt
video.textToVideoWhat you see in n8n
Notes & use cases
Turns a written scene into a short clip, with the framing, the length and the sound decided by parameters rather than by an editor.
Key parameters
- Prompt: required, the scene to generate, like the placeholder about a cat and a ball of yarn.
- Model:
wan2.6-t2v, the text-to-video model. - Resolution:
720Por1080P. - Duration (Seconds): from 2 to 15 seconds.
- Shot Type:
singlefor one continuous shot,multifor a multi-shot narrative. - Audio: an Options toggle that generates audio, with Audio Input Type deciding where it comes from.
Generate video from image
video.imageToVideoWhat you see in n8n
Notes & use cases
Starts from a still and animates it, using the picture as the first frame of the clip instead of describing everything in words.
Key parameters
- Image URL: required, the first-frame image, such as
https://example.com/image.png. - Input Data Field Name: required, the field carrying the binary image.
- Input Type:
urlorbinary, matching which field is filled. - Prompt: optional here, describing the motion wanted on top of the still.
- Model:
wan2.6-i2v-flashfor speed,wan2.6-i2vfor the standard image-to-video model. - Download Video: on, the clip arrives as binary data; off, only the URL comes back.
Need help automating Qwen Cloud with n8n?
A person reads every message.
Qwen Cloud and n8n, the common questions
01Is the Qwen Cloud node included in n8n?
02What credentials does the Qwen Cloud node need?
03What are the limits of the n8n Qwen Cloud node?
04Should you use this node or an AI Agent?
05n8n or Make for Qwen Cloud?
Get our weekly integration tips.
No spam. Unsubscribe anytime.

