Skip to content
FlowHubFluxonLab
C
General Automationfree

Generate Text-to-Video & Image-to-Video Content with Seedance 1 Lite AI

by Yaron Beenadapted from n8n official workflow galleryUpdated Aug 2026
RequiresCCodeHTTP RequestHTTP Request
Share Post Share
MaOn clicking 'execute'On clicking 'ex…SeSet API KeyHRCreate PredictionCreate Predicti…CoExtract Prediction IDExtract Predict…WaWaitHRCheck Prediction StatusCheck Predictio…IfCheck If CompleteCheck If Comple…CoProcess Result12345678
1/5
STEPS · 8
Run manually by an operator

Generate Text-to-Video & Image-to-Video Content with Seedance 1 Lite AI Built with n8n + Replicate This workflow takes a prompt (and optional seed), sends it to Bytedance’s seedance-1-lite model, waits for processing, and returns a generated video. ⚡ Section 1: Start & Authenticate ▶️ On clicking ‘execute’** → Manual trigger to start the workflow. 🔑 Set API Key** → Stores your Replicate API key so all requests are authorized. Benefit: Keeps your API credentials secure and reusable. 🛠️ Section 2: Send Video Generation Request 📡 Create Prediction** → Makes a POST request to Replicate with: prompt: your text description of the video seed: (optional) controls randomness for reproducibility Model version: b6519549e375404f45af5ef2e4b01f651d4014f3b57d3270b430e0523bad9835 Benefit: Kickstarts AI video generation from just a simple text prompt. 🔍 Section 3: Track the Prediction 📦 Extract Prediction ID** → Stores predictionId, status, and predictionUrl for polling. ⏳ Wait** → Pauses 2 seconds between checks. 🔁 Check Prediction Status** → Calls Replicate to see if the video is ready. ✅ Check If Complete** → Branches: If status = succeeded → continue.

Tags

n8nreference-only
Connects
CCodeWHTTP Request
CategoryGeneral Automation
Triggermanual
Complexitycomplex
Nodes8
AddedAug 7, 2025
CW
free

Handle Shopify Admin GraphQL requests with error handling and retries

Quick Overview This sub-workflow is called by another n8n workflow to execute Shopify Admin GraphQL queries and mutations via HTTP, adding input validation, detailed error detection (including rate limits), and automatic retries with exponential backoff before returning the final Shopify response. How it works Receives input from a parent workflow execution, including a Shopify GraphQL query, shop API endpoint, and Admin API access token. Validates required inputs, normalizes the shop endpoint, and builds the Shopify Admin GraphQL request payload with variables and API version defaults. Sends the POST request to the Shopify Admin GraphQL endpoint with the X-Shopify-Access-Token header and captures the full HTTP response. Parses the response to detect HTTP/network failures, GraphQL errors, Shopify userErrors, bulk/job failures, and throttle status from Shopify cost extensions. If throttled or encountering retryable server/network errors, waits for the calculated backoff interval and retries the same Shopify GraphQL request up to the configured maximum. If non-retryable errors remain, stops the execution and returns a formatted error object; otherwise returns the Shopify data, rate-l

by Nexus AI
CW
free

Generate llms.txt from a website sitemap using forms and HTTP requests

Quick overview This workflow uses an n8n Form and HTTP requests to read a website sitemap, fetch each listed page, extract the page title and meta description, and generate an llms.txt file that you can preview, copy, or download. How it works Receives a form submission with the site name, site description, sitemap URL, and a maximum page limit. Fetches the sitemap XML and, if it is a sitemap index, extracts the child sitemap URLs. Fetches each leaf sitemap and extracts, deduplicates, and caps page URLs while grouping them into sections based on the first URL path segment. Requests each page’s HTML content and continues even if some pages fail to load. Extracts the HTML title and meta description (or falls back to a title derived from the URL), then compiles the results into a sectioned llms.txt markdown file. Renders a completion page that displays the generated llms.txt content and provides Copy and Download actions. Setup Copy the n8n Form URL from the Form Trigger node and open it in your browser (or use the test form in the editor). Submit your site name, sitemap URL, and optionally a site description and max pages value. Upload the downloaded or copied llms.txt file to your w

by isaWOW
CW
free

Audit digital identities with Apify BreachHound and PDF.co

Quick overview This workflow starts from an n8n form submission, runs the BreachHound actor on Apify to discover where an email address is registered, then summarizes the results into an HTML audit report and converts it to a downloadable PDF using PDF.co. How it works Receives an email address (and options) when a user submits the n8n form. Sends the submitted inputs to the BreachHound actor on Apify to check the email across online services. Loads the actor’s results from the Apify dataset. Aggregates the dataset into audit statistics and a list of platforms where the email is found. Generates an HTML report containing the totals and a table of found accounts. Converts the HTML report to a PDF using the PDF.co Convert from HTML API and fetches the generated file via HTTP. Setup Connect an Apify API credential and select/configure the BreachHound actor in the Apify “Run an Actor” step. Create a PDF.co account, replace YOUR_API_KEY_HERE with your PDF.co API key, and keep the HTML-to-PDF endpoint settings as needed. Review the form fields and the default options (for example, the “onlyUsed” and “useResidentialProxy” values) to match the audit behavior you want before activating the

by Blukaze Automations