Block 1 - Sticky Note
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
What this workflow is (About) This workflow turns a Telegram bot into an AI powered lyrics assistant . Users send a command plus a lyrics URL , and the flow downloads, cleans, and analyzes the text...
n8n-nodes-base.stickynote, n8n-nodes-base.telegram, n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-base.httprequest, n8n-nodes-base.set, n8n-nodes-base.if, n8n-nodes-base.noop
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Raphael De Carvalho Florencio.
Original n8n.io sourceThis workflow turns a Telegram bot into an AI-powered lyrics assistant. Users send a command plus a lyrics URL, and the flow downloads, cleans, and analyzes the text, then replies on Telegram with translated lyrics, summaries, vocabulary, poetic devices, or an interpretation—all generated by AI (OpenAI).
/get_lyrics <URL>).Create a Telegram bot with @BotFather and copy the bot token.
In n8n, create Credentials → Telegram API and paste your token (no hardcoded keys in nodes).
Create Credentials → OpenAI and paste your API key.
Import the workflow and set a short webhook path (e.g., /lyrics-bot).
Publish the webhook and set it on Telegram:
https://api.telegram.org/bot<YOUR_BOT_TOKEN>/setWebhook?url=https://[YOUR_DOMAIN]/webhook/lyrics-bot
(Optional) Restrict update types:
curl -X POST https://api.telegram.org/bot<YOUR_BOT_TOKEN>/setWebhook \
-H "Content-Type: application/json" \
-d '{
"url": "https://[YOUR_DOMAIN]/webhook/lyrics-bot",
"allowed_updates": ["message"]
}'
Test by sending /start and then /get_lyrics <PUBLIC_URL> to your bot.
If messages are long, ensure MarkdownV2 is used and special characters are escaped.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
Showing the first 24 of 30 workflow blocks. Download the JSON for the full node graph.
| Workflow | AI lyrics study bot for Telegram — Translation, summary, vocabulary |
|---|---|
| Complexity | advanced |
| Nodes | 30 |
| Categories | Content Creation, Multimodal AI |
| Author | Raphael De Carvalho Florencio |
| Published | 09 Aug 2025 |
Use the JSON export at /data/workflows/7195/7195.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
What this workflow is (About) This workflow turns a Telegram bot into an AI powered lyrics assistant . Users send a command plus a lyrics URL , and the flow downloads, cleans, and analyzes the text...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, Multimodal AI use case.