by Milan Vasarhelyi - SmoothWork
Video Introduction Want to automate your inbox or need a custom workflow? đ Book a Call | đŹ DM me on Linkedin Workflow Overview This workflow creates a recipe finder web application that connects to the API Ninjas Recipe API using n8n's HTTP Request node. Users submit search queries through a public web form, which triggers an API call to fetch matching recipes. The resultsâincluding recipe title, ingredients, and cooking instructionsâare displayed in a formatted completion page. Why This Workflow Is Valuable This template demonstrates API-to-API integration, a crucial skill for connecting services that don't have pre-built n8n nodes. By using direct API calls, you gain access to the full functionality of external services. This pattern can be adapted to integrate virtually any tool with an API into your n8n workflows. Common Use Cases Create public-facing forms that query external databases Build custom search tools for specialized APIs Integrate niche services without dedicated n8n nodes Learn header authentication for secure API connections Setup & Configuration Register for API Ninjas: Sign up at API Ninjas to access their Recipe API Get your API Key: Locate your API key in the API Ninjas dashboard Configure Credentials: In n8n, create a new Header Auth credential Set the header name to match the API requirement (e.g., 'X-Api-Key') Paste your API key as the value Apply this credential to the HTTP Request node The Form Trigger generates a public URL for users to submit queries. Customize the form title, field labels, and completion message HTML to match your needs.
by System Admin
Tagged with: , , , ,
by System Admin
Tagged with: , , , ,
by System Admin
Tagged with: , , , ,
by System Admin
Tagged with: , , , ,
by System Admin
Tagged with: , , , ,
by Robert Breen
A minimal, plug-and-play workflow that generates sample data using n8nâs Code node (both JavaScript and Python versions included) and then fans out those records into individual items with Split Out. Perfect for testing downstream nodes, mapping, pagination, or prototyping list-based logic without connecting to real data sources. â What this template does Generates 20 sample records** with fields: index, num, and test Writes the array to item.json.barr Uses Split Out to convert the array into one item per record Includes both JavaScript and Python implementations side-by-side đ¤ Whoâs it for Builders who need mock data to test mappings and loops Educators/demo makers who want a simple fan-out pattern Anyone who wants a clean scaffold for list processing in n8n âď¸ How it works / What it does Generate Data Javascript**: Produces barr = [{ index, num, test }, ...] for 20 rows Generate Data Python**: Same output, written in Python Split Out Javascript / Python: Takes barr and emits **one item per element > Use either branch (JS or Python) depending on your preference. đ ď¸ How to set up No external setup required. Import the workflow and Execute. Select either the JavaScript or Python branch to see fan-out items. đ Requirements n8n (Cloud or self-hosted) No credentials or third-party services đď¸ Customize the workflow Change the number of rows: adjust the loop range (0..N) Rename or add fields to each record (e.g., name, price, tags) Replace the static array with generated or randomized data Pipe the Split Out output into Set, Function, HTTP, or Sheets nodes for further testing đď¸ Notes Sticky notes are included for in-editor guidance. Both implementations return the same structure so you can swap freely. đŹ Contact Need help customizing this (e.g., shaping fields, adding randomizers, or exporting to CSV/Sheets)? đ§ rbreen@ynteractive.com đ Robert Breen â https://www.linkedin.com/in/robert-breen-29429625/ đ ynteractive.com â https://ynteractive.com
by Arthur Dimeglio
đ§ Automated Spotify Playlist Organizer â Sort and Queue Tracks by Popularity đ§ Overview This workflow acts as your AI-powered Spotify DJ assistant. It retrieves your playlists, cleans and organizes them, sorts tracks by popularity, and automatically queues them for playback â creating a ready-to-play, personalized listening session. ⸝ âď¸ Step-by-Step Breakdown Manual Trigger Node: When clicking âExecute workflowâ Starts the workflow manually when you click âExecuteâ in n8n. ⸝ Get Userâs Playlists Node: Get a userâs playlists ⢠Uses your Spotify OAuth credentials. ⢠Calls Spotifyâs API to retrieve all playlists from your account (returnAll: true). ⢠Output: an array of playlists (name, URI, number of tracks, etc.). đ˘ This is your raw data source. ⸝ Clean & Deduplicate Node: Clean & Deduplicate (Code node) This JavaScript block: ⢠Normalizes input (handles arrays and multiple items). ⢠Extracts only useful fields: name, uri, total. ⢠Filters out playlists missing data. ⢠Removes duplicates by URI. đ§š Result: a clean, uniform list of your playlists. ⸝ Get a Playlistâs Tracks Node: Get a playlistâs tracks by URI or ID ⢠Fetches all tracks from a specific playlist. ⢠Returns detailed info: name, popularity, artists, album, added date, etc. đľ This retrieves the actual songs from your chosen playlist. ⸝ Playlist Reorganizer Node: Playlist reorganizer (Code node) This JavaScript block: ⢠Collects all tracks from the selected playlist. ⢠Avoids duplicates with seenTrackIds. ⢠Extracts key fields: id, name, popularity, artists, album, added_at, url, etc. ⢠Sorts songs by ascending popularity (less popular first). đ Result: playlist reorganized by song popularity. ⸝ Loop Over Items Node: Split in Batches ⢠Iterates over each track one by one. ⢠Sends each song sequentially to the next node (âAdd a song to a queueâ). đ Allows each song to be processed individually. ⸝ Add a Song to a Queue Node: Add a song to a queue ⢠Uses each songâs Spotify ID to add it to your Spotify playback queue (spotify:track:{{ $json.id }}). ⢠Connected to the âLoop Over Itemsâ node to continue until all songs are queued. đś Result: your Spotify queue fills automatically with the reorganized tracks. ⸝ â Final Result When you execute this workflow: It fetches all your playlists. Cleans and filters them. Extracts tracks from one selected playlist. Sorts them by popularity. Adds them to your playback queue. đ§ End result: a fully automated âAI DJâ that reorganizes your playlists and lines up your music session â from discovery to playback. ⸝ 𪪠Prerequisites Before using this workflow: ⢠You must have a Spotify account. ⢠You need to set up Spotify OAuth credentials in n8n (Client ID, Client Secret, Redirect URI). ⢠Ensure you have Spotify Premium (API queueing only works on Premium accounts). ⸝ đ ď¸ Setup Instructions Import this workflow into your n8n instance. Go to the Spotify OAuth2 API credentials section and connect your account.
by System Admin
Tagged with: , , , ,
by System Admin
Tagged with: , , , ,
by KlickTipp
Community Node Disclaimer: This workflow uses KlickTipp community nodes. Introduction This workflow automates Zoom recurring webinar registrations by capturing form submissions from a KlickTipp Landingpage and enriching contacts with webinar details. Depending on the registrantâs webinar choice (for example âE-Mail Zustellung fĂźr Anfängerâ or âE-Mail Zustellung fĂźr Expertenâ), the system fetches the correct Zoom webinar info and writes it into KlickTipp. Ideal for running scalable webinar funnels without manual data entry. Benefits Instant contact enrichment**: Automatically populates KlickTipp with Zoom join links and session times. Dynamic segmentation**: Applies specific tags for âBeginnerâ or âExpertâ webinar participants. Scalable structure**: Router logic allows easy extension for more webinar types. Key Features KlickTipp Trigger**: Starts the workflow when a landing-page form is submitted via outbound webhook. Switch Router**: Routes based on the webinar selection. Supports multiple webinar options. Zoom API Integration**: Retrieves recurring webinar data including join URL and future occurrences. webinar IDs are set per path (Beginner vs Expert). KlickTipp Contact Sync**: Updates or subscribes contacts in the correct list. Writes custom fields for join link and next session timestamp. Applies topic-specific tags for segmentation. Custom Fields (KlickTipp Setup) | Name | Field type | |---------------------------------|----------------| | Zoom \| webinar choice | Line Text | | Zoom \| webinar start timestamp | Date & Time | | Zoom \| Join URL | URL | | Zoom \| Registration ID | Line Text | | Zoom \| Duration webinar | Line Text | Tags (Segmentation) Zoom webinar E-Mail Zustellung fĂźr Anfänger Zoom webinar E-Mail Zustellung fĂźr Experten Setup Instructions KlickTipp Preparation Create the custom fields above. Add dropdown for webinar choice on landing page. Configure outbound webhook to n8n. Credential Configuration Authenticate KlickTipp API. Connect Zoom via OAuth2 (webinar:write:registrant scope). Insert correct Zoom webinar IDs in workflow nodes. Field Mapping Map the zoom data to the newly created KlickTipp custom fields. Ensure tags match campaign setup. Testing and Deployment Submit a registration form. Confirm workflow triggers and Zoom data is fetched. Verify KlickTipp contact is updated with: Join URL Start timestamp Correct segmentation tag â ď¸ Note: Zoom OAuth tokens may expire â refresh when needed. Zoom may also enforce API rate limits. Campaign Expansion Ideas Add more webinar types and extend router. Build reminder and follow-up campaigns in KlickTipp by tag. Track attendance tags for automated post-event actions. Customization Adapt Zoom nodes for webinars. Add fallback logic if Zoom data is missing. Trigger cross-tool automations (CRM, Slack, invoicing). Resources: Use KlickTipp Community Node in n8n Automate Workflows: KlickTipp Integration in n8n
by Guilherme Campos
This n8n workflow turns Slack messages into actionable Notion todos â using nothing more than a simple emoji reaction. By reacting to any Slack message with the đ emoji, the workflow will automatically capture the message, extract its content, and create a new Notion to_do item with a link back to the original message. A daily scheduled Slack message then reminds you of any tasks left unchecked in Notion. Perfect for async teams who live in Slack but organize work in Notion, this template helps you bridge the gap between communication and executionâwithout switching tools or relying on memory. Whoâs it for Teams that use Slack and Notion daily Product managers, leads, and async-first teams who want quick capture of action items Anyone tired of copy-pasting Slack messages into Notion manually How it works Emoji-triggered Notion capture The workflow listens for the reaction_added event from Slack. When a user reacts to a message with :memo:, it fetches the full message content and permalink. It creates a to_do block in Notion with the message and a direct link to the original Slack thread. Daily Slack reminder Every day at 08:00, the workflow scans all to_do blocks in a designated Notion page. It filters out those that are still unchecked. It aggregates the unchecked tasks and sends a single Slack message to the user with the list of open todos. How to set up Connect your Slack account and configure the trigger to watch for the :memo: reaction. Connect your Notion account and select a page where todos should be created. Customize the schedule time if needed (default is 08:00). (Optional) Set up the final Slack message node to send reminders to yourself or a specific team channel. Requirements A Slack app with permission to read messages and reactions A Notion integration with access to edit the target page A Notion page with blocks enabled (or create one manually) How to customize the workflow Change the emoji from :memo: to another (e.g. :fire: for urgent, :idea: for brainstorms) Add logic to assign Notion tasks to specific team members Use Slack threads, tags, or message metadata to auto-categorize tasks Modify the daily reminder to include due dates, priorities, or Slack buttons to check off tasks