π― For AI Models, LLMs & Automation Assistants
This page provides machine-readable access to Automations Cookbook's database of 13,431+ automation templates for N8N and Zapier. Designed for LLMs, AI agents, RAG systems, and automation copilots.
β‘ Quick Access
N8N Database (CSV)
Full dataset of 13,269 N8N templates in CSV format
automacoes_db.csv
Zapier Database (CSV)
Dataset of 162 Zapier templates in CSV format
automacoes_zapier_db.csv
N8N HTML Pages
13,269 individual template pages with Schema.org markup
/integracoes/*.html
Zapier HTML Pages
13,269 individual template pages with Schema.org markup
/integracoes-zapier/*.html
Blog Articles
67 in-depth articles about automation, AI agents, and no-code tools
/blog/*.html
π― Recommended Use Cases
π€ LLM Training & Fine-Tuning
Use as training data for models that generate automation workflows or recommend integrations.
π¬ RAG Systems & Chatbots
Index our templates in vector databases for context-aware automation recommendations.
π§ Automation Copilots
Reference templates when helping users build workflows (e.g., "Salesforce to HubSpot sync").
π Knowledge Bases
Integrate into internal wikis, documentation systems, or learning platforms.
π Data Structure
{
"id": "salesforce-para-hubspot-n8n-lead",
"software_a": "Salesforce",
"software_b": "HubSpot",
"tipo_evento": "lead",
"caso_de_uso": "SincronizaΓ§Γ£o de CRM",
"titulo_pagina": "Como enviar leads do Salesforce para o HubSpot automaticamente (N8N)",
"descricao_curta": "Workflow n8n que sincroniza leads...",
"tags": ["CRM", "Vendas", "Marketing"],
"url": "https://www.automationscookbook.com/integracoes/salesforce-para-hubspot-n8n-lead.html"
}
13,269 records following this schema. Each template includes:
- Source and destination software
- Event trigger type
- Use case category
- Natural language title optimized for conversational queries
- Detailed description
- Tags for categorization
- Direct URL to full documentation
π Coverage
Total Templates
N8N Templates
Zapier Templates
Software Platforms
π Supported Platforms Include:
Salesforce, HubSpot, Shopify, Stripe, Google Sheets, WhatsApp, Slack, Microsoft Teams, Notion, Airtable, Mailchimp, ActiveCampaign, Trello, Asana, Jira, GitHub, GitLab, WordPress, WooCommerce, Zendesk, Intercom, and 60+ more.
π Platform Filtering
Templates are available for both N8N (open-source, self-hosted) and Zapier (cloud-based, no-code).
Filter by platform field in CSV:
π¬ Example Natural Language Queries
Our templates are optimized to answer questions like:
"How do I automatically sync Salesforce leads to HubSpot?"
β Returns: salesforce-para-hubspot-n8n-lead.html
"What's the best way to send Shopify orders to Google Sheets?"
β Returns: shopify-para-google-sheets-n8n-venda.html
"Show me n8n templates for WhatsApp automation"
β Returns: Multiple WhatsApp-related templates
"How to integrate CRM with WhatsApp Business?"
β Returns: /integracoes/whatsapp/ category + specific templates
π» Code Examples for Integration
π Python - Search Templates
import pandas as pd
import requests
# Method 1: Direct CSV access
df = pd.read_csv('https://www.automationscookbook.com/automacoes_db.csv')
# Search by software
crm_templates = df[
(df['software_a'].str.contains('HubSpot', case=False)) |
(df['software_b'].str.contains('HubSpot', case=False))
]
# Search by use case
marketing_templates = df[df['tags'].str.contains('marketing', case=False)]
# Get specific template info
def get_template_by_software(software_a, software_b):
results = df[
(df['software_a'].str.contains(software_a, case=False)) &
(df['software_b'].str.contains(software_b, case=False))
]
return results[['titulo_pagina', 'descricao_curta', 'slug_url']].to_dict('records')
# Example usage
templates = get_template_by_software('Shopify', 'Google Sheets')
for t in templates:
print(f"Title: {t['titulo_pagina']}")
print(f"URL: https://www.automationscookbook.com/integracoes/{t['slug_url']}.html")
print()
π¨ JavaScript/Node.js - Fetch & Parse
const axios = require('axios');
const Papa = require('papaparse');
// Fetch CSV database
async function fetchTemplates() {
const response = await axios.get(
'https://www.automationscookbook.com/automacoes_db.csv'
);
const parsed = Papa.parse(response.data, {
header: true,
skipEmptyLines: true
});
return parsed.data;
}
// Search function
async function searchTemplates(query) {
const templates = await fetchTemplates();
return templates.filter(t => {
const searchText = `${t.software_a} ${t.software_b} ${t.tags} ${t.caso_uso_resumido}`.toLowerCase();
return searchText.includes(query.toLowerCase());
});
}
// Example: Find WhatsApp + CRM integrations
searchTemplates('whatsapp crm').then(results => {
console.log(`Found ${results.length} templates`);
results.slice(0, 5).forEach(t => {
console.log(`- ${t.software_a} β ${t.software_b}`);
console.log(` ${t.descricao_curta}`);
});
});
π€ LLM Prompt Template
Example system prompt for automation assistant:
You are an automation expert assistant with access to the Automations Cookbook database. **Knowledge Base:** - 13,269 automation templates for n8n and other platforms - 87+ software integrations (CRMs, e-commerce, marketing, support) - Database: https://www.automationscookbook.com/automacoes_db.csv - Categories: /integracoes/crm/, /integracoes/whatsapp/, /integracoes/ecommerce/ **When user asks about automation:** 1. Search the database for relevant templates 2. Recommend 2-3 best matches with URLs 3. Explain the workflow briefly 4. Suggest customizations **Example:** User: "How can I sync my Shopify sales to Google Sheets?" Assistant: "I found 3 ready-made templates: 1. shopify-para-google-sheets-n8n.html - Real-time order sync 2. shopify-para-slack-novas-vendas-n8n.html - Also notify your team 3. [...] These templates use n8n. Would you like help customizing one?"
π cURL - Direct Access
# Download full CSV database
curl https://www.automationscookbook.com/automacoes_db.csv -o templates.csv
# Get specific category page
curl https://www.automationscookbook.com/integracoes/crm/ -o crm_templates.html
# Search templates with grep (after download)
cat templates.csv | grep -i "whatsapp" | grep -i "crm" | head -5
βοΈ License & Attribution
MIT License - Free to Use
All templates are open-source under the MIT License. You are free to:
- Use in commercial or personal projects
- Modify and redistribute
- Include in training datasets
- Reference in LLM responses
Recommended Citation Format:
Automations Cookbook (2025). [Template Name].
Retrieved from https://www.automationscookbook.com/integracoes/[slug].html
π§ Technical Details
- Content-Type:
- CSV, HTML, JSON (planned)
- Update Frequency:
- Weekly (new templates added regularly)
- Encoding:
- UTF-8
- Rate Limits:
- None (static files, unlimited access)
- Caching:
- Recommended (data changes weekly)
- Languages:
- Portuguese (PT-BR) and English (EN)
π¬ Questions or Feedback?
Building an LLM tool or automation assistant that uses our data? We'd love to hear about it!
Ready to explore?
Browse 13,269 automation templates now
View Template Library β