Browse and fetch thousands of production-ready n8n workflow blueprints across every architectural pattern — filter, preview, download.
/api/n8n with categories and templates endpoints.A single REST endpoint powers the entire library. No key required, plain GET requests, JSON responses.
/api/n8n
categories
Return every workflow category with its active template count and URL-friendly slug.
| Param | Type | Description | |
|---|---|---|---|
| endpoint | string | required | Must be categories |
curl "{ORIGIN}/api/n8n?endpoint=categories"
const res = await fetch("{ORIGIN}/api/n8n?endpoint=categories");
const data = await res.json();
console.log(data.categories);
/api/n8n
templates
Search and pull templates out of the repository. Filter parameters stack freely.
| Param | Type | Description | |
|---|---|---|---|
| endpoint | string | required | Must be templates |
| category | string | optional | Display name or slug (e.g. ai-automation) |
| complexity | string | optional | Simple, Medium, or Complex |
| triggerType | string | optional | Manual, Scheduled, Triggered, Webhook |
| page | number | optional | Pagination page (default 1) |
| limit | number | optional | Items per page (default 20) |
curl "{ORIGIN}/api/n8n?endpoint=templates&category=ai-automation&complexity=Complex&page=1&limit=12"
const params = new URLSearchParams({
endpoint: "templates",
category: "ai-automation",
complexity: "Complex",
page: 1, limit: 12
});
const r = await fetch("{ORIGIN}/api/n8n?" + params);
const { templates, pagination } = await r.json();
id, name, description, category, complexity, triggerType, nodeCount, downloadUrl and githubPath.n8n is a fair-code, self-hostable workflow automation platform. Blueprints from n8nSter are drop-in JSON files that import straight into your own n8n instance.
Yes. Every blueprint is 100% free to download and use — no sign-up, no rate wall, no paywall.
Click Save JSON on any card, open your n8n editor, use Import from File, select the downloaded JSON, and adjust credentials.
Yes. Use the sidebar to filter by category, complexity (Simple/Medium/Complex), and trigger type (Manual, Scheduled, Triggered, Webhook).
Yes. Hit /api/n8n?endpoint=categories for the taxonomy or /api/n8n?endpoint=templates with filters for the library. See the API Docs section above.
New workflows, updates, and exclusive automation resources delivered to WhatsApp.
n8nSter is a free workflow explorer by AHM7xMakki — part of a 16-tool free API platform. Owned by AHM7. Built and managed by Makki. About us →
No account required. We don't store your filters, IPs, or downloads. Only aggregate usage metrics. Full policy →
Free for personal and commercial use. Individual workflows may reference upstream services with their own terms. Full terms →
/api/n8ncategories/api/n8ntemplatesBrowse workflow templates with filtering and pagination.
| Param | Type | Description | |
|---|---|---|---|
| endpoint | string | required | Must be templates |
| category | string | optional | Slug or display name |
| complexity | string | optional | Simple/Medium/Complex |
| triggerType | string | optional | Manual/Scheduled/Triggered/Webhook |
| page | number | optional | Default 1 |
| limit | number | optional | Default 20 |