This workflow is a simple recipe search tool built inside n8n.
You fill in a form with a search term (like "pasta"), it goes out to an API, and then shows you the recipe result right away.
Form Trigger
Starts the workflow when someone submits the recipe search form.
The form only asks for one thing: the recipe keyword.
Fetch Recipe from API
Uses the API Ninjas Recipe API.
It sends the keyword you typed in and pulls back the recipe data - ingredients and instructions.
Show Recipe Result
Formats the result into a simple response with clear headings: Ingredients and Instructions.
You’ll see the recipe right after hitting submit.
It’s a minimal and direct example.
You can change it later to save recipes to a database, send them in email, or connect it to other apps.