Automate Chinese Translation via Line with n8n & OpenRouter.ai

Struggling with manual Chinese translations on Line app? This n8n workflow automates text and image translation using OpenRouter.ai, saving you hours and boosting interaction responsiveness.
webhook
httpRequest
switch
+2
Workflow Identifier: 2190
NODES in Use: Webhook, HTTP Request, Switch, Extract From File, Sticky Note

Press CTRL+F5 if the workflow didn't load.

Learn how to Build this Workflow with AI:

Visit through Desktop for Best experience

What This Workflow Does

This workflow helps automatically translate messages on Line into Chinese characters, pinyin, and English meaning.
It stops the user from spending hours manually translating text and images daily.
When new messages come in, it checks the type and sends the message or image to an AI for fast, correct translation.
Then it replies to the person on Line with clear translated text.
Unsupported messages get a polite error reply.

The workflow saves time, cuts mistakes, and gives quick, full translations for text or images inside Line chat.


Who Should Use This Workflow

Anyone who gets many text or picture messages needing Chinese translation on Line.
This is great for tutors, content creators, or customer service handling language support.

It fits users who want faster, accurate answers without manual typing or switching apps.


Tools and Services Used

  • Line Messaging API: Receives and sends messages in Line chat.
  • n8n Automation Platform: Runs the workflow and logic nodes.
  • OpenRouter.ai LLM Models: Processes text and image data to create Chinese translations.
  • HTTP Request Nodes: Make API calls to Line and OpenRouter.ai.
  • Webhook Node: Listens to incoming Line messages.
  • Switch Node: Routes messages based on their type.
  • Extract From File Node: Converts image binary to base64.

Workflow Inputs, Processing Steps, and Outputs

Inputs

  • Incoming Line chat messages (text, images, audio, others) via webhook.
  • Message content or image media IDs from Line.

Processing Steps

  • Detect message type: Using a Switch node to check text, image, audio or unsupported.
  • Send loading animation: Calls Line API to show user a “loading” signal.
  • Text translation: Sends text to OpenRouter.qwen AI for Chinese, pinyin, and English translation.
  • Image translation: Gets image content via Line API, converts to base64, and sends to OpenRouter.ai for text extraction and translation.
  • Reply message: Posts formatted translation text back to the user on Line.
  • Unsupported message reply: Sends a polite message asking the user to retry.

Outputs

  • Translated text including Chinese characters, pinyin, and English explanations sent as Line messages.
  • Loading animation feedback in chat during processing.
  • Error reply for unsupported formats.

Beginner Step-by-Step: How to Use This Workflow in n8n Production

1. Import the Workflow

  1. Download the workflow JSON file using the Download button on this page.
  2. Open n8n editor where you want to run the automation (supports self-host n8n or cloud).
  3. Click the menu, choose “Import from File”, and select the downloaded JSON file.

2. Configure Credentials and Settings

  1. Add your Line Messaging API Channel Access Token as an HTTP Header Authentication credential.
  2. Enter your OpenRouter.ai API Key in another HTTP Header Authentication credential.
  3. Check webhook URLs and replace any example IDs, reply tokens, or user IDs if needed.

3. Test the Workflow

  1. Trigger the workflow by sending a text or image message from your Line official account.
  2. Confirm the loading animation appears in Line chat promptly.
  3. Check if the translated text replies correctly with Chinese characters, pinyin, and English.

4. Activate the Workflow

  1. Turn on the workflow toggle in n8n editor to enable it fully.
  2. Monitor executions in n8n’s dashboard to ensure smooth running.

Follow these clear steps to run the automatic Chinese translation immediately without building from scratch.


Step-By-Step Workflow Explanation

Step 1: Receive Messages with Webhook node

The webhook listens for new messages sent to your Line official account.
It waits for text, image, or other message types to start the process.

Step 2: Show Loading Indicator with HTTP Request Node

Right after a message arrives, the workflow calls Line’s loading API to send a “loading” animation.
This tells the user the message is being processed and keeps them engaged.

Step 3: Determine Message Type with Switch node

The message type is checked against “text”, “image”, “audio”, or “else”.
The workflow routes the message path based on this, allowing different processing for each type.

Step 4a: Process Text Messages via OpenRouter.ai

A POST request sends the text to OpenRouter’s Qwen LLM.
This AI returns Chinese characters, pinyin, and English meanings using the system prompt given.
Below is the prompt structure used to get consistent results:

{
  "model": "qwen/qwen-2.5-72b-instruct:free",
  "messages": [
    {
      "role": "system",
      "content": "please provide chinese character, pinyin and translation in english. if the input is in english, you will translate and also provide chinese character, pinyin and translation in english for each word"
    },
     {
      "role": "user",
      "content": "{{ $('Line Webhook').item.json.body.events[0].message.text }}"
    }
  ]
}

Step 4b: Process Image Messages

The workflow fetches the image bytes from Line using message ID.
An Extract From File node converts the image to base64.
A POST request sends the base64 image data to OpenRouter for text recognition and translation.
Here is the JSON payload template for this request:

{
  "model": "qwen/qwen2.5-vl-72b-instruct:free",
  "messages": [
    {
      "role": "system",
      "content": "please provide chinese character, pinyin and translation in english for all the text in the image"
    },
    {
      "role": "user",
      "content": [
        {
          "type": "image_url",
          "image_url": {
            "url": "data:image/jpeg;base64,{{ $json.img_prompt }}"
          }
        }
      ]
    }
  ]
}

Step 5: Send Replies Back to the User

For text and image translations, the workflow sends the reply using Line’s reply API.
It uses a POST request with the reply token and the clean translated message.
This removes markdown, tags, and unwanted characters to send plain translated text.
Here is the reply JSON body:

{
  "replyToken": "{{ $('Line Webhook').item.json.body.events[0].replyToken }}",
  "messages": [
    {
      "type": "text",
      "text": "{{ $json.choices[0].message.content.replaceAll("\n","\\n").replaceAll("\n","").removeMarkdown().removeTags().replaceAll('"','') }}"
    }
  ]
}

Step 6: Handle Unsupported Messages

If the message type is audio or anything else not supported, the workflow sends a polite reply asking the user to try again.
This keeps users informed and prevents silent failures.


Customization Ideas

  • Add audio transcription before translation to support voice messages.
  • Modify system prompts to add other languages or output formats.
  • Change reply message formatting to include markdown or emojis.
  • Manage multiple Line bots by duplicating webhook and credentials.
  • Adjust the loading animation time to match average processing duration.

Troubleshooting Common Issues

  • Webhook not receiving messages: Check webhook URL in Line Developer Console and confirm it is active.
  • OpenRouter API errors: Verify the API Key is valid and not expired.
  • Line reply messages failing: Confirm that the Channel Access Token in n8n HTTP Header Auth is correct.

Pre-Production Checklist

  • Send sample text and image messages and check translated replies.
  • Verify loading animation appears quickly in the chat.
  • Confirm OpenRouter returns correct Chinese characters, pinyin, and English.
  • Test all output paths from the Switch node.
  • Backup workflow and credentials before going live.

Deployment Advice

Switch the workflow to active in n8n after checking all parts.
Watch executions for any errors and adjust loading time or error replies based on user feedback.
Invite users to send test messages to keep validating performance.


Summary

✓ Automatically translates Line chat messages into Chinese with pinyin and English.
✓ Saves hours by automating manual translation tasks.
✓ Processes text and images accurately with AI.
✓ Sends loading feedback and clear translated replies in chat.
✓ Handles unsupported inputs with polite error messages.
✓ Easy to import, configure, and run inside n8n.


Frequently Asked Questions

The Line webhook node listens for incoming messages on the Line official account and triggers the workflow when a message arrives.
The workflow requires a Line Messaging API Channel Access Token and an OpenRouter.ai API Key.
It downloads the image content via Line API, converts it to base64, and sends it to OpenRouter.ai to extract and translate the text in the image.
No, audio messages are not fully supported; the workflow sends an asking to retry message for unsupported audio inputs.

Promoted by BULDRR AI

Related Workflows

Automate Viral UGC Video Creation Using n8n + Degaus (Beginner-Friendly Guide)

Learn how to automate viral UGC video creation using n8n, AI prompts, and Degaus. This beginner-friendly guide shows how to import, configure, and run the workflow without technical complexity.
Form Trigger
Google Sheets
Gmail
+37
Free

AI SEO Blog Writer Automation Workflows in n8n

A complete beginner guide to building an AI SEO blog writer automation using n8n.
AI Agent
Google Sheets
httpRequest
+5
Free

Automate CrowdStrike Alerts with VirusTotal, Jira & Slack

This workflow automates processing of CrowdStrike detections by enriching threat data via VirusTotal, creating Jira tickets for incident tracking, and notifying teams on Slack for quick response. Save hours daily by transforming complex threat data into actionable alerts effortlessly.
scheduleTrigger
httpRequest
jira
+5
Free

Automate Telegram Invoices to Notion with AI Summaries & Reports

Save hours on financial tracking by automating invoice extraction from Telegram photos to Notion using Google Gemini AI. This workflow extracts data, records transactions, and generates detailed spending reports with charts sent on schedule via Telegram.
lmChatGoogleGemini
telegramTrigger
notion
+9
Free

Automate Email Replies with n8n and AI-Powered Summarization

Save hours managing your inbox with this n8n workflow that uses IMAP email triggers, AI summarization, and vector search to draft concise replies requiring minimal review. Automate business email processing efficiently with AI guidance and Gmail integration.
emailReadImap
vectorStoreQdrant
emailSend
+12
Free

Automate Email Campaigns Using n8n with Gmail & Google Sheets

This n8n workflow automates personalized email outreach campaigns by integrating Gmail and Google Sheets, saving hours of manual follow-up work and reducing errors in email sequences. It ensures timely follow-ups based on previous email interactions, optimizing communication efficiency.
googleSheets
gmail
code
+5
Free