Back to Catalog

Crypto market alert system with Binance and Telegram integration

NskhaNskha
15830 views
2/3/2026
Official Page

An innovative N8N workflow that monitors cryptocurrency prices on Binance, identifies significant market movements, and sends customized alerts through Telegram. Ideal for traders and enthusiasts seeking real-time market insights.

659d07c153303c6de24e6442.jpg

How It Works

  1. Trigger Options: Choose between a manual trigger or a scheduled trigger to start the workflow.
  2. Fetch Market Data: The 'Binance 24h Price Change' node retrieves the latest 24-hour price changes for cryptocurrencies from Binance.
  3. Identify Significant Changes: The 'Filter by 10% Change rate' node filters out cryptocurrencies with price changes of 10% or more.
  4. Aggregate Data: The 'Aggregate' node combines all significant changes into a single dataset.
  5. Format Data for Telegram: The 'Split By 1K chars' node formats this data into chunks suitable for Telegram's message size limit.
  6. Send Telegram Message: The 'Send Telegram Message' node broadcasts the formatted message to a specified Telegram chat.

Set Up Steps

  • Estimated Time: About 1-5 minutes for setup.

  • Initial Configuration: Set up a Binance API connection (Optional) and your Telegram bot credentials.

  • Customization: Adjust the trigger according to your preference (manual or scheduled) and update the Telegram chat ID.

  • Create Telegram bot steps:- Setting up a Telegram bot and obtaining its token involves several steps. Here's a detailed guide:

  1. Start a Chat with BotFather:

    • Open Telegram and search for "BotFather". This is the official bot that allows you to create new bots.
    • Start a chat with BotFather by clicking on the "Start" button at the bottom of the screen.
  2. Create a New Bot:

    • In the chat with BotFather, type /newbot and send the message.
    • BotFather will ask you to choose a name for your bot. This is a display name and can be anything you like.
    • Next, you'll need to choose a username for your bot. This must be unique and end in bot. For example, my_crypto_alert_bot.
  3. Receive Your Token:

    • After you've set the name and username, BotFather will provide you with a token. This token is like a password for your bot, so keep it secure.
    • The message will look something like this:
      Done! Congratulations on your new bot. You will find it at t.me/my_crypto_alert_bot. You can now add a description, about section and profile picture for your bot, see /help for a list of commands. Use this token to access the HTTP API: 123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11
      
    • The token in this case is 123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11.
  4. Test Your Bot:

    • You can find your bot by searching for its username in Telegram.
    • Start a chat with your bot and try sending it a message. Although it won't respond yet, this step is essential to ensure it's set up correctly.
  5. Use the Token in n8n:

    • In your n8n workflow, when setting up the Telegram node, you'll be prompted to enter credentials.
    • Choose to add new credentials and paste the token you received from BotFather.
  6. Get Your Chat ID:

    • To send messages to a specific chat, you need to know the chat ID.
    • The easiest way to find this is to first message your bot, then use a bot like @userinfobot to get your chat ID.
    • Once you have the chat ID, you can configure it in the Telegram node in your n8n workflow.
  7. Finalize Your Workflow:

    • With the bot token and chat ID set up in n8n, your Telegram notifications should work as intended in your workflow.

Remember, keep your bot token secure and never share it publicly. If your token is compromised, you can always generate a new one by chatting with BotFather and selecting /token.

Example result

siDCAAKSc3.png

Keywords: n8n workflow, cryptocurrency market, Binance API, Telegram bot, price alert system, automated trading signals, market analysis

Crypto Market Alert System with Binance and Telegram Integration

This n8n workflow automates the process of fetching cryptocurrency market data from Binance and sending alerts to a Telegram channel based on custom logic. It's designed to keep you informed about significant price movements or other market conditions you define.

What it does

  1. Schedules Execution: The workflow runs at a predefined interval (e.g., every 5 minutes) to regularly check market conditions.
  2. Fetches Market Data: It makes an HTTP request to the Binance API to retrieve the latest cryptocurrency market data.
  3. Processes Data with Custom Logic: A "Code" node (or "Function" node, depending on the n8n version) allows you to implement custom JavaScript logic to analyze the fetched data. This is where you define your alert conditions (e.g., price changes, volume spikes, specific coin movements).
  4. Sends Telegram Alerts: If the custom logic determines that an alert condition is met, it sends a formatted message to a specified Telegram chat.

Prerequisites/Requirements

  • n8n Instance: A running n8n instance.
  • Binance Account (Optional, for API access): While the workflow uses the public Binance API, if you need authenticated requests for more advanced data, you'll need a Binance API key and secret.
  • Telegram Bot: A Telegram bot token and the chat ID of the channel or user where you want to receive alerts.
    • You can create a new bot by talking to BotFather on Telegram.
    • To get your chat ID, you can forward a message from your target chat/channel to the get_id_bot or use a similar bot.

Setup/Usage

  1. Import the Workflow:
    • Download the workflow JSON provided.
    • In your n8n instance, click on "Workflows" in the left sidebar.
    • Click "New" and then "Import from JSON".
    • Paste the workflow JSON and click "Import".
  2. Configure Credentials:
    • Telegram:
      • Click on the "Telegram" node.
      • Under "Credentials", click "Create New".
      • Select "Telegram API".
      • Enter your Telegram Bot Token.
      • Save the credential.
  3. Customize the "HTTP Request" Node:
    • Click on the "HTTP Request" node.
    • The URL should point to the Binance API endpoint for market data (e.g., https://api.binance.com/api/v3/ticker/24hr for 24-hour ticker data). Adjust this as needed for the specific data you want to retrieve.
    • Ensure the "Request Method" is GET.
  4. Implement Custom Alert Logic in the "Code" Node:
    • Click on the "Code" node (or "Function" node).
    • This is the most crucial part. You'll need to write JavaScript code to analyze the data received from the Binance API and decide when to send an alert.
    • Example Logic (Illustrative - you will need to adapt this):
      const items = $input.json; // Assuming the HTTP Request returns JSON data
      
      let alerts = [];
      
      // Example: Check for a specific coin's price change
      const btcData = items.find(item => item.symbol === 'BTCUSDT');
      if (btcData && parseFloat(btcData.priceChangePercent) > 5) {
          alerts.push(`🚨 BTCUSDT price increased by ${btcData.priceChangePercent}% in 24h! Current price: ${btcData.lastPrice}`);
      }
      
      // Example: Check for high volume on any coin
      for (const item of items) {
          if (parseFloat(item.volume) > 1000000000) { // Example: Volume > 1 Billion
              alerts.push(`πŸ“ˆ High volume detected for ${item.symbol}: ${item.volume}`);
          }
      }
      
      if (alerts.length > 0) {
          return [{ json: { message: alerts.join('\n') } }];
      } else {
          // No alerts, return an empty array or a message to prevent Telegram notification
          return [];
      }
      
    • The return statement should output an item (or items) if an alert needs to be sent. The Telegram node will use this output.
  5. Configure the "Telegram" Node:
    • Click on the "Telegram" node.
    • Select the "Send Text Message" operation.
    • In the "Chat ID" field, enter the chat ID of your Telegram channel or user.
    • In the "Text" field, reference the output from your "Code" node. For example, if your code outputs a message property, you would use an expression like: {{ $json.message }}.
  6. Set the Schedule:
    • Click on the "Schedule Trigger" node.
    • Configure the desired interval for the workflow to run (e.g., "Every 5 minutes").
  7. Activate the Workflow:
    • Toggle the workflow to "Active" in the top right corner of the n8n editor.

The workflow will now run automatically based on your schedule, fetch Binance data, apply your custom logic, and send Telegram alerts when your conditions are met.

Related Templates

Generate song lyrics and music from text prompts using OpenAI and Fal.ai Minimax

Spark your creativity instantly in any chatβ€”turn a simple prompt like "heartbreak ballad" into original, full-length lyrics and a professional AI-generated music track, all without leaving your conversation. πŸ“‹ What This Template Does This chat-triggered workflow harnesses AI to generate detailed, genre-matched song lyrics (at least 600 characters) from user messages, then queues them for music synthesis via Fal.ai's minimax-music model. It polls asynchronously until the track is ready, delivering lyrics and audio URL back in chat. Crafts original, structured lyrics with verses, choruses, and bridges using OpenAI Submits to Fal.ai for melody, instrumentation, and vocals aligned to the style Handles long-running generations with smart looping and status checks Returns complete song package (lyrics + audio link) for seamless sharing πŸ”§ Prerequisites n8n account (self-hosted or cloud with chat integration enabled) OpenAI account with API access for GPT models Fal.ai account for AI music generation πŸ”‘ Required Credentials OpenAI API Setup Go to platform.openai.com β†’ API keys (sidebar) Click "Create new secret key" β†’ Name it (e.g., "n8n Songwriter") Copy the key and add to n8n as "OpenAI API" credential type Test by sending a simple chat completion request Fal.ai HTTP Header Auth Setup Sign up at fal.ai β†’ Dashboard β†’ API Keys Generate a new API key β†’ Copy it In n8n, create "HTTP Header Auth" credential: Name="Fal.ai", Header Name="Authorization", Header Value="Key [Your API Key]" Test with a simple GET to their queue endpoint (e.g., /status) βš™οΈ Configuration Steps Import the workflow JSON into your n8n instance Assign OpenAI API credentials to the "OpenAI Chat Model" node Assign Fal.ai HTTP Header Auth to the "Generate Music Track", "Check Generation Status", and "Fetch Final Result" nodes Activate the workflowβ€”chat trigger will appear in your n8n chat interface Test by messaging: "Create an upbeat pop song about road trips" 🎯 Use Cases Content Creators: YouTubers generating custom jingles for videos on the fly, streamlining production from idea to audio export Educators: Music teachers using chat prompts to create era-specific folk tunes for classroom discussions, fostering interactive learning Gift Personalization: Friends crafting anniversary R&B tracks from shared memories via quick chats, delivering emotional audio surprises Artist Brainstorming: Songwriters prototyping hip-hop beats in real-time during sessions, accelerating collaboration and iteration ⚠️ Troubleshooting Invalid JSON from AI Agent: Ensure the system prompt stresses valid JSON; test the agent standalone with a sample query Music Generation Fails (401/403): Verify Fal.ai API key has minimax-music access; check usage quotas in dashboard Status Polling Loops Indefinitely: Bump wait time to 45-60s for complex tracks; inspect fal.ai queue logs for bottlenecks Lyrics Under 600 Characters: Tweak agent prompt to enforce fuller structures like [V1][C][V2][B][C]; verify output length in executions

Daniel NkenchoBy Daniel Nkencho
601

Automate Dutch Public Procurement Data Collection with TenderNed

TenderNed Public Procurement What This Workflow Does This workflow automates the collection of public procurement data from TenderNed (the official Dutch tender platform). It: Fetches the latest tender publications from the TenderNed API Retrieves detailed information in both XML and JSON formats for each tender Parses and extracts key information like organization names, titles, descriptions, and reference numbers Filters results based on your custom criteria Stores the data in a database for easy querying and analysis Setup Instructions This template comes with sticky notes providing step-by-step instructions in Dutch and various query options you can customize. Prerequisites TenderNed API Access - Register at TenderNed for API credentials Configuration Steps Set up TenderNed credentials: Add HTTP Basic Auth credentials with your TenderNed API username and password Apply these credentials to the three HTTP Request nodes: "Tenderned Publicaties" "Haal XML Details" "Haal JSON Details" Customize filters: Modify the "Filter op ..." node to match your specific requirements Examples: specific organizations, contract values, regions, etc. How It Works Step 1: Trigger The workflow can be triggered either manually for testing or automatically on a daily schedule. Step 2: Fetch Publications Makes an API call to TenderNed to retrieve a list of recent publications (up to 100 per request). Step 3: Process & Split Extracts the tender array from the response and splits it into individual items for processing. Step 4: Fetch Details For each tender, the workflow makes two parallel API calls: XML endpoint - Retrieves the complete tender documentation in XML format JSON endpoint - Fetches metadata including reference numbers and keywords Step 5: Parse & Merge Parses the XML data and merges it with the JSON metadata and batch information into a single data structure. Step 6: Extract Fields Maps the raw API data to clean, structured fields including: Publication ID and date Organization name Tender title and description Reference numbers (kenmerk, TED number) Step 7: Filter Applies your custom filter criteria to focus on relevant tenders only. Step 8: Store Inserts the processed data into your database for storage and future analysis. Customization Tips Modify API Parameters In the "Tenderned Publicaties" node, you can adjust: offset: Starting position for pagination size: Number of results per request (max 100) Add query parameters for date ranges, status filters, etc. Add More Fields Extend the "Splits Alle Velden" node to extract additional fields from the XML/JSON data, such as: Contract value estimates Deadline dates CPV codes (procurement classification) Contact information Integrate Notifications Add a Slack, Email, or Discord node after the filter to get notified about new matching tenders. Incremental Updates Modify the workflow to only fetch new tenders by: Storing the last execution timestamp Adding date filters to the API query Only processing publications newer than the last run Troubleshooting No data returned? Verify your TenderNed API credentials are correct Check that you have setup youre filter proper Need help setting this up or interested in a complete tender analysis solution? Get in touch πŸ”— LinkedIn – Wessel Bulte

Wessel BulteBy Wessel Bulte
247

πŸŽ“ How to transform unstructured email data into structured format with AI agent

This workflow automates the process of extracting structured, usable information from unstructured email messages across multiple platforms. It connects directly to Gmail, Outlook, and IMAP accounts, retrieves incoming emails, and sends their content to an AI-powered parsing agent built on OpenAI GPT models. The AI agent analyzes each email, identifies relevant details, and returns a clean JSON structure containing key fields: From – sender’s email address To – recipient’s email address Subject – email subject line Summary – short AI-generated summary of the email body The extracted information is then automatically inserted into an n8n Data Table, creating a structured database of email metadata and summaries ready for indexing, reporting, or integration with other tools. --- Key Benefits βœ… Full Automation: Eliminates manual reading and data entry from incoming emails. βœ… Multi-Source Integration: Handles data from different email providers seamlessly. βœ… AI-Driven Accuracy: Uses advanced language models to interpret complex or unformatted content. βœ… Structured Storage: Creates a standardized, query-ready dataset from previously unstructured text. βœ… Time Efficiency: Processes emails in real time, improving productivity and response speed. *βœ… Scalability: Easily extendable to handle additional sources or extract more data fields. --- How it works This workflow automates the transformation of unstructured email data into a structured, queryable format. It operates through a series of connected steps: Email Triggering: The workflow is initiated by one of three different email triggers (Gmail, Microsoft Outlook, or a generic IMAP account), which constantly monitor for new incoming emails. AI-Powered Parsing & Structuring: When a new email is detected, its raw, unstructured content is passed to a central "Parsing Agent." This agent uses a specified OpenAI language model to intelligently analyze the email text. Data Extraction & Standardization: Following a predefined system prompt, the AI agent extracts key information from the email, such as the sender, recipient, subject, and a generated summary. It then forces the output into a strict JSON structure using a "Structured Output Parser" node, ensuring data consistency. Data Storage: Finally, the clean, structured data (the from, to, subject, and summarize fields) is inserted as a new row into a specified n8n Data Table, creating a searchable and reportable database of email information. --- Set up steps To implement this workflow, follow these configuration steps: Prepare the Data Table: Create a new Data Table within n8n. Define the columns with the following names and string type: From, To, Subject, and Summary. Configure Email Credentials: Set up the credential connections for the email services you wish to use (Gmail OAuth2, Microsoft Outlook OAuth2, and/or IMAP). Ensure the accounts have the necessary permissions to read emails. Configure AI Model Credentials: Set up the OpenAI API credential with a valid API key. The workflow is configured to use the model, but this can be changed in the respective nodes if needed. Connect the Nodes: The workflow canvas is already correctly wired. Visually confirm that the email triggers are connected to the "Parsing Agent," which is connected to the "Insert row" (Data Table) node. Also, ensure the "OpenAI Chat Model" and "Structured Output Parser" are connected to the "Parsing Agent" as its AI model and output parser, respectively. Activate the Workflow: Save the workflow and toggle the "Active" switch to ON. The triggers will begin polling for new emails according to their schedule (e.g., every minute), and the automation will start processing incoming messages. --- Need help customizing? Contact me for consulting and support or add me on Linkedin.

DavideBy Davide
1616