01. SNIPER CUSTO ZERO (INSTAGRAM -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Ele monitora hashtags. Em vez de IA paga, ele usa um Filtro de Palavras-Chave (ajuda, indicação, oficina, preço). Se encontrar, te avisa no WhatsApp. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://www.instagram.com/explore/tags/taximetrorj/",
"options": {}
},
"name": "Scraper Instagram",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $node[\"Scraper Instagram\"].json[\"text\"] }}",
"operation": "contains",
"value2": "indicação"
},
{
"value1": "={{ $node[\"Scraper Instagram\"].json[\"text\"] }}",
"operation": "contains",
"value2": "ajuda"
},
{
"value1": "={{ $node[\"Scraper Instagram\"].json[\"text\"] }}",
"operation": "contains",
"value2": "oficina"
}
]
},
"combineOperation": "any"
},
"name": "Filtro de Palavras",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [450, 300]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "🚨 LEAD ENCONTRADO (CUSTO ZERO):\n\nTexto: {{ $node[\"Scraper Instagram\"].json[\"text\"] }}\nLink: {{ $node[\"Scraper Instagram\"].json[\"link\"] }}"
},
"name": "WhatsApp: Alerta",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [650, 300]
}
],
"connections": {
"Scraper Instagram": { "main": [[ { "node": "Filtro de Palavras", "type": "main", "index": 0 } ]] },
"Filtro de Palavras": { "main": [[ { "node": "WhatsApp: Alerta", "type": "main", "index": 0 } ]] }
}
}
02. AUDITOR CUSTO ZERO (PLANILHA -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Você faz a busca manual no Maps e joga o nome/telefone numa Planilha Google . O n8n vê a nova linha e manda o WhatsApp de venda sozinho. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"documentId": "ID_DA_SUA_PLANILHA",
"sheetName": "Página1",
"filters": {}
},
"name": "Google Sheets: Novos Leads",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [250, 500]
},
{
"parameters": {
"phoneNumber": "={{ $node[\"Google Sheets: Novos Leads\"].json[\"telefone\"] }}",
"message": "Olá {{ $node[\"Google Sheets: Novos Leads\"].json[\"nome\"] }}! Notei que sua empresa não tem site no Google. Queremos te ajudar a dominar o mercado. Podemos conversar?"
},
"name": "WhatsApp: Venda Automática",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [500, 500]
}
],
"connections": {
"Google Sheets: Novos Leads": { "main": [[ { "node": "WhatsApp: Venda Automática", "type": "main", "index": 0 } ]] }
}
}
03. AUDITORIA SEO (SITE -> WHATSAPP REPORT)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Ele testa se um site é lento ou tem erros de SEO. Gera um relatório simples e manda no WhatsApp. Ótimo para vender "Aceleração de Site". Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url=URL_DO_CLIENTE&strategy=mobile",
"options": {}
},
"name": "PageSpeed API (Grátis)",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [250, 700]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "📊 RELATÓRIO DE VELOCIDADE:\n\nSite: {{ $node[\"PageSpeed API (Grátis)\"].json[\"id\"] }}\nScore: {{ $node[\"PageSpeed API (Grátis)\"].json[\"lighthouseResult\"][\"categories\"][\"performance\"][\"score\"] * 100 }}\n\nO site está lento! Ótima chance de vender otimização."
},
"name": "WhatsApp: Report",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [500, 700]
}
],
"connections": {
"PageSpeed API (Grátis)": { "main": [[ { "node": "WhatsApp: Report", "type": "main", "index": 0 } ]] }
}
}
04. RADAR MULTI-NICHO (RSS -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Monitora pedidos de serviço em todos os seus nichos (Chaveiro, Mudança, Eletricista, etc.) via RSS de sites de busca. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "URL_DO_RSS_DE_BUSCA",
"options": {}
},
"name": "Radar de Pedidos",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [250, 900]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $node[\"Radar de Pedidos\"].json[\"title\"] }}",
"operation": "contains",
"value2": "preciso"
},
{
"value1": "={{ $node[\"Radar de Pedidos\"].json[\"title\"] }}",
"operation": "contains",
"value2": "ajuda"
}
]
},
"combineOperation": "any"
},
"name": "Filtro de Nicho",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [450, 900]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "🚨 NOVO PEDIDO NO RADAR:\n\n{{ $node[\"Radar de Pedidos\"].json[\"title\"] }}\nLink: {{ $node[\"Radar de Pedidos\"].json[\"link\"] }}"
},
"name": "WhatsApp: Alerta Radar",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [650, 900]
}
],
"connections": {
"Radar de Pedidos": { "main": [[ { "node": "Filtro de Nicho", "type": "main", "index": 0 } ]] },
"Filtro de Nicho": { "main": [[ { "node": "WhatsApp: Alerta Radar", "type": "main", "index": 0 } ]] }
}
}
05. CAÇADOR DE PROJETOS (WORKANA RSS -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Monitora o Workana em tempo real por projetos de "Criação de Site" ou "Landing Page". Te avisa no WhatsApp assim que o projeto é postado. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://www.workana.com/pt/jobs?rss=1&category=it-programming",
"options": {}
},
"name": "Workana RSS",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [250, 1100]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $node[\"Workana RSS\"].json[\"title\"] }}",
"operation": "contains",
"value2": "site"
},
{
"value1": "={{ $node[\"Workana RSS\"].json[\"title\"] }}",
"operation": "contains",
"value2": "landing"
}
]
},
"combineOperation": "any"
},
"name": "Filtro de Oportunidade",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [450, 1100]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "💰 OPORTUNIDADE WORKANA:\n\nProjeto: {{ $node[\"Workana RSS\"].json[\"title\"] }}\nLink: {{ $node[\"Workana RSS\"].json[\"link\"] }}"
},
"name": "WhatsApp: Alerta Workana",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [650, 1100]
}
],
"connections": {
"Workana RSS": { "main": [[ { "node": "Filtro de Oportunidade", "type": "main", "index": 0 } ]] },
"Filtro de Oportunidade": { "main": [[ { "node": "WhatsApp: Alerta Workana", "type": "main", "index": 0 } ]] }
}
}
06. MONITOR DE DOMÍNIOS (WHOIS -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Verifica se um domínio de um cliente potencial está prestes a expirar. Ótimo para oferecer renovação ou um site novo. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://rdap.registro.br/domain/DOMINIO_AQUI.com.br",
"options": {}
},
"name": "Check Registro.br",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [250, 1300]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "⚠️ ALERTA DE DOMÍNIO:\n\nO domínio {{ $node[\"Check Registro.br\"].json[\"handle\"] }} está com status: {{ $node[\"Check Registro.br\"].json[\"status\"][0] }}.\n\nHora de oferecer um site novo!"
},
"name": "WhatsApp: Alerta Domínio",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [500, 1300]
}
],
"connections": {
"Check Registro.br": { "main": [[ { "node": "WhatsApp: Alerta Domínio", "type": "main", "index": 0 } ]] }
}
}
07. RECUPERADOR DE CARRINHO (PLANILHA -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Monitora uma planilha de "Carrinhos Abandonados" e manda um WhatsApp automático com um cupom de desconto. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"documentId": "ID_DA_PLANILHA_VENDAS",
"sheetName": "Carrinhos",
"filters": {}
},
"name": "Google Sheets: Carrinhos",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [250, 1500]
},
{
"parameters": {
"phoneNumber": "={{ $node[\"Google Sheets: Carrinhos\"].json[\"telefone\"] }}",
"message": "Oi {{ $node[\"Google Sheets: Carrinhos\"].json[\"nome\"] }}! Vimos que você esqueceu alguns itens no carrinho. Use o cupom VOLTA10 para ganhar 10% de desconto agora!"
},
"name": "WhatsApp: Recuperação",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [500, 1500]
}
],
"connections": {
"Google Sheets: Carrinhos": { "main": [[ { "node": "WhatsApp: Recuperação", "type": "main", "index": 0 } ]] }
}
}
08. GESTOR DE REVIEWS (GOOGLE MAPS -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Alerta o dono do negócio sempre que uma nova avaliação negativa (1 ou 2 estrelas) é postada no Google Maps. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://mybusiness.googleapis.com/v4/accounts/ACCOUNT_ID/locations/LOCATION_ID/reviews",
"options": {}
},
"name": "Google My Business Reviews",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [250, 1700]
},
{
"parameters": {
"conditions": {
"number": [
{
"value1": "={{ $node[\"Google My Business Reviews\"].json[\"starRating\"] }}",
"operation": "smaller",
"value2": 3
}
]
}
},
"name": "Filtro: Negativa",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [450, 1700]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "🚨 ALERTA DE REPUTAÇÃO:\n\nNova avaliação negativa recebida!\nEstrelas: {{ $node[\"Google My Business Reviews\"].json[\"starRating\"] }}\nComentário: {{ $node[\"Google My Business Reviews\"].json[\"comment\"] }}"
},
"name": "WhatsApp: Alerta Review",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [650, 1700]
}
],
"connections": {
"Google My Business Reviews": { "main": [[ { "node": "Filtro: Negativa", "type": "main", "index": 0 } ]] },
"Filtro: Negativa": { "main": [[ { "node": "WhatsApp: Alerta Review", "type": "main", "index": 0 } ]] }
}
}
09. RELATÓRIO AUTOMÁTICO (ANALYTICS -> WHATSAPP)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Puxa os dados de acessos do Google Analytics e manda um resumo semanal para o cliente via WhatsApp. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"resource": "report",
"operation": "get",
"propertyId": "SUA_PROPERTY_ID",
"dateRange": "last7Days",
"metrics": ["sessions", "activeUsers"]
},
"name": "Google Analytics 4",
"type": "n8n-nodes-base.googleAnalytics",
"typeVersion": 1,
"position": [250, 1900]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "📊 RESUMO SEMANAL DO SITE:\n\nSessões: {{ $node[\"Google Analytics 4\"].json[\"sessions\"] }}\nUsuários Ativos: {{ $node[\"Google Analytics 4\"].json[\"activeUsers\"] }}\n\nO site está performando bem!"
},
"name": "WhatsApp: Relatório",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [500, 1900]
}
],
"connections": {
"Google Analytics 4": { "main": [[ { "node": "WhatsApp: Relatório", "type": "main", "index": 0 } ]] }
}
}
10. WHATSAPP AUTO-REPLY + GOOGLE SHEETS
Copiar JSON
O QUE ESTE FLUXO FAZ:
Responde clientes instantaneamente no WhatsApp e salva o contato e a mensagem em uma Planilha Google. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": { "path": "whatsapp-webhook", "options": {} },
"name": "Webhook: WhatsApp",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [100, 2100]
},
{
"parameters": {
"phoneNumber": "={{ $node[\"Webhook: WhatsApp\"].json[\"from\"] }}",
"message": "Olá, obrigado pelo contato. Em breve responderemos. Se quiser orçamento, envie seu nome e serviço desejado."
},
"name": "WhatsApp: Resposta",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [300, 2100]
},
{
"parameters": {
"documentId": "ID_DA_PLANILHA",
"sheetName": "Contatos",
"columns": {
"mappingMode": "defineBelow",
"value": {
"Nome": "={{ $node[\"Webhook: WhatsApp\"].json[\"name\"] }}",
"Mensagem": "={{ $node[\"Webhook: WhatsApp\"].json[\"body\"] }}",
"Data": "={{ $now }}"
}
}
},
"name": "Google Sheets: Salvar",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [500, 2100]
}
],
"connections": {
"Webhook: WhatsApp": { "main": [[ { "node": "WhatsApp: Resposta", "type": "main", "index": 0 }, { "node": "Google Sheets: Salvar", "type": "main", "index": 0 } ]] }
}
}
11. CAPTURA DE LEADS SITE + EMAIL AUTO
Copiar JSON
O QUE ESTE FLUXO FAZ:
Recebe dados de formulário do site, salva no Sheets e envia um e-mail automático de confirmação. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": { "path": "site-lead", "options": {} },
"name": "Webhook: Site",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [100, 2300]
},
{
"parameters": {
"documentId": "ID_DA_PLANILHA",
"sheetName": "Leads Site",
"columns": {
"mappingMode": "defineBelow",
"value": {
"Nome": "={{ $node[\"Webhook: Site\"].json[\"nome\"] }}",
"Email": "={{ $node[\"Webhook: Site\"].json[\"email\"] }}",
"Telefone": "={{ $node[\"Webhook: Site\"].json[\"telefone\"] }}"
}
}
},
"name": "Google Sheets: Salvar",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [300, 2300]
},
{
"parameters": {
"toEmail": "={{ $node[\"Webhook: Site\"].json[\"email\"] }}",
"subject": "Recebemos seu pedido",
"text": "Olá {{ $node[\"Webhook: Site\"].json[\"nome\"] }}, recebemos seu pedido e entraremos em contato em breve."
},
"name": "Gmail: Boas-vindas",
"type": "n8n-nodes-base.gmail",
"typeVersion": 1,
"position": [500, 2300]
}
],
"connections": {
"Webhook: Site": { "main": [[ { "node": "Google Sheets: Salvar", "type": "main", "index": 0 }, { "node": "Gmail: Boas-vindas", "type": "main", "index": 0 } ]] }
}
}
12. ENVIO DE PROPOSTA AUTOMÁTICA
Copiar JSON
O QUE ESTE FLUXO FAZ:
Gera e envia uma proposta comercial básica por e-mail após o cliente preencher um formulário. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": { "path": "proposta", "options": {} },
"name": "Webhook: Proposta",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [100, 2500]
},
{
"parameters": {
"toEmail": "={{ $node[\"Webhook: Proposta\"].json[\"email\"] }}",
"subject": "Sua Proposta Comercial - VJ7",
"text": "Olá {{ $node[\"Webhook: Proposta\"].json[\"nome\"] }},\n\nConforme solicitado, segue nossa proposta para o serviço de {{ $node[\"Webhook: Proposta\"].json[\"servico\"] }}.\n\nValor estimado: R$ {{ $node[\"Webhook: Proposta\"].json[\"valor\"] }}\n\nFicamos à disposição!"
},
"name": "Gmail: Enviar Proposta",
"type": "n8n-nodes-base.gmail",
"typeVersion": 1,
"position": [300, 2500]
}
],
"connections": {
"Webhook: Proposta": { "main": [[ { "node": "Gmail: Enviar Proposta", "type": "main", "index": 0 } ]] }
}
}
13. AGENDAMENTO AUTO + GOOGLE CALENDAR
Copiar JSON
O QUE ESTE FLUXO FAZ:
Cria eventos no Google Calendar automaticamente e envia confirmação para o cliente. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": { "path": "agendamento", "options": {} },
"name": "Webhook: Agendamento",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [100, 2700]
},
{
"parameters": {
"calendar": "primary",
"start": "={{ $node[\"Webhook: Agendamento\"].json[\"data\"] }}",
"end": "={{ $node[\"Webhook: Agendamento\"].json[\"data_fim\"] }}",
"summary": "Agendamento: {{ $node[\"Webhook: Agendamento\"].json[\"nome\"] }}",
"description": "Serviço: {{ $node[\"Webhook: Agendamento\"].json[\"servico\"] }}"
},
"name": "Google Calendar: Criar",
"type": "n8n-nodes-base.googleCalendar",
"typeVersion": 1,
"position": [300, 2700]
},
{
"parameters": {
"toEmail": "={{ $node[\"Webhook: Agendamento\"].json[\"email\"] }}",
"subject": "Confirmação de Agendamento",
"text": "Olá {{ $node[\"Webhook: Agendamento\"].json[\"nome\"] }}, seu agendamento para {{ $node[\"Webhook: Agendamento\"].json[\"data\"] }} foi confirmado."
},
"name": "Gmail: Confirmar",
"type": "n8n-nodes-base.gmail",
"typeVersion": 1,
"position": [500, 2700]
}
],
"connections": {
"Webhook: Agendamento": { "main": [[ { "node": "Google Calendar: Criar", "type": "main", "index": 0 }, { "node": "Gmail: Confirmar", "type": "main", "index": 0 } ]] }
}
}
14. FOLLOW-UP AUTOMÁTICO DE LEADS
Copiar JSON
O QUE ESTE FLUXO FAZ:
Lê leads pendentes de uma planilha e envia um e-mail de follow-up após 2 dias. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"documentId": "ID_DA_PLANILHA",
"sheetName": "Leads",
"filters": {
"mappingMode": "defineBelow",
"value": { "Status": "Pendente" }
}
},
"name": "Google Sheets: Leads",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [100, 2900]
},
{
"parameters": {
"toEmail": "={{ $node[\"Google Sheets: Leads\"].json[\"email\"] }}",
"subject": "Ainda precisa de ajuda?",
"text": "Olá {{ $node[\"Google Sheets: Leads\"].json[\"nome\"] }}, gostaria de saber se ainda precisa do serviço de {{ $node[\"Google Sheets: Leads\"].json[\"servico\"] }}."
},
"name": "Gmail: Follow-up",
"type": "n8n-nodes-base.gmail",
"typeVersion": 1,
"position": [300, 2900]
}
],
"connections": {
"Google Sheets: Leads": { "main": [[ { "node": "Gmail: Follow-up", "type": "main", "index": 0 } ]] }
}
}
15. AUDITOR DE MAPS (MAPS -> SITE CHECK)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Vê se a empresa no Google Maps NÃO tem site ou se o site é lento/amador . Te avisa no WhatsApp para você atacar. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://maps.googleapis.com/maps/api/place/textsearch/json?query=vidraçaria+em+RJ&key=SUA_MAPS_KEY_GRATIS",
"options": {}
},
"name": "Google Maps: Busca",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [100, 3100]
},
{
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{ !!$node[\"Google Maps: Busca\"].json[\"website\"] }}",
"operation": "isFalse"
}
]
}
},
"name": "Sem Site?",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [300, 3100]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "🎯 ALVO SEM SITE ENCONTRADO:\n\nEmpresa: {{ $node[\"Google Maps: Busca\"].json[\"name\"] }}\nEndereço: {{ $node[\"Google Maps: Busca\"].json[\"formatted_address\"] }}\n\nHora de vender um site profissional!"
},
"name": "WhatsApp: Alerta Alvo",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [500, 3100]
}
],
"connections": {
"Google Maps: Busca": { "main": [[ { "node": "Sem Site?", "type": "main", "index": 0 } ]] },
"Sem Site?": { "main": [[ { "node": "WhatsApp: Alerta Alvo", "type": "main", "index": 0 } ]] }
}
}
17. TRANSPORT SNIPER (TRANSFER)
Copiar JSON (Gmail - ESTÁVEL)
O QUE ESTE FLUXO FAZ:
Monitora buscas por transfer e aeroportos no Rio. Envia leads direto para seu e-mail.
{
"nodes": [
{
"parameters": {
"url": "https://rss.app/feeds/v1.1/tXwY6z8A2bC4dE6f.xml"
},
"name": "Radar de Leads",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [100, 300]
},
{
"parameters": {
"fromEmail": "julioferrao1979@gmail.com",
"toEmail": "julioferrao1979@gmail.com",
"subject": "🎯 NOVO LEAD VJ7: Transporte Rio",
"text": "🎯 NOVO LEAD ENCONTRADO:\n\nPost: {{ $node[\"Radar de Leads\"].json[\"title\"] }}\nLink: {{ $node[\"Radar de Leads\"].json[\"link\"] }}"
},
"name": "Gmail: Alerta Lead",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [350, 300]
}
],
"connections": {
"Radar de Leads": { "main": [[ { "node": "Gmail: Alerta Lead", "type": "main", "index": 0 } ]] }
}
}
19. LESSONS SNIPER (AULAS)
Copiar JSON (Gmail - ESTÁVEL)
O QUE ESTE FLUXO FAZ:
Monitora quem quer aprender violão ou idiomas no Rio.
{
"nodes": [
{
"parameters": {
"url": "https://rss.app/feeds/v1.1/aB1c2D3e4F5g6H7i.xml"
},
"name": "Radar de Alunos",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [100, 500]
},
{
"parameters": {
"fromEmail": "julioferrao1979@gmail.com",
"toEmail": "julioferrao1979@gmail.com",
"subject": "🎸 NOVO ALUNO VJ7: Violão/Idiomas",
"text": "🎸 NOVO ALUNO POTENCIAL:\n\nInteresse: {{ $node[\"Radar de Alunos\"].json[\"title\"] }}\nLink: {{ $node[\"Radar de Alunos\"].json[\"link\"] }}"
},
"name": "Gmail: Alerta Lead",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [350, 500]
}
],
"connections": {
"Radar de Alunos": { "main": [[ { "node": "Gmail: Alerta Lead", "type": "main", "index": 0 } ]] }
}
}
18. TOUR SNIPER (TRILINGUAL)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Monitora turistas estrangeiros precisando de guia no Rio. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://www.tripadvisor.com.br/RSS-g303506-Rio_de_Janeiro_State_of_Rio_de_Janeiro.xml"
},
"name": "TripAdvisor RSS",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [100, 3500]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $node[\"TripAdvisor RSS\"].json[\"content\"] }}",
"operation": "contains",
"value2": "driver"
},
{
"value1": "={{ $node[\"TripAdvisor RSS\"].json[\"content\"] }}",
"operation": "contains",
"value2": "guide"
}
]
}
},
"name": "Filter Tour",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [300, 3500]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "🎯 ALERTA TURISTA:\n\n{{ $node[\"TripAdvisor RSS\"].json[\"title\"] }}\nLink: {{ $node[\"TripAdvisor RSS\"].json[\"link\"] }}"
},
"name": "WhatsApp: Alerta Turista",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [500, 3500]
}
],
"connections": {
"TripAdvisor RSS": { "main": [[ { "node": "Filter Tour", "type": "main", "index": 0 } ]] },
"Filter Tour": { "main": [[ { "node": "WhatsApp: Alerta Turista", "type": "main", "index": 0 } ]] }
}
}
19. LESSONS SNIPER (VIOLÃO)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Monitora quem quer aprender violão no Rio. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://queryfeed.net/twitter?q=aula+de+violao+rj+OR+professor+de+violao+rj"
},
"name": "Twitter RSS",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [100, 3700]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "🎯 NOVO ALUNO VIOLÃO:\n\nPost: {{ $node[\"Twitter RSS\"].json[\"title\"] }}\nLink: {{ $node[\"Twitter RSS\"].json[\"link\"] }}"
},
"name": "WhatsApp: Alerta Aluno",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [300, 3700]
}
],
"connections": {
"Twitter RSS": { "main": [[ { "node": "WhatsApp: Alerta Aluno", "type": "main", "index": 0 } ]] }
}
}
20. LESSONS SNIPER (LANGUAGES)
Copiar JSON
O QUE ESTE FLUXO FAZ (GRÁTIS):
Monitora quem quer aprender Inglês/Francês/Espanhol. Custo: R$ 0,00.
{
"nodes": [
{
"parameters": {
"url": "https://queryfeed.net/twitter?q=aprender+frances+OR+aprender+espanhol+OR+learn+portuguese+rio"
},
"name": "Twitter RSS",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [100, 3900]
},
{
"parameters": {
"phoneNumber": "SEU_NUMERO_AQUI",
"message": "🎯 NOVO ALUNO LÍNGUAS:\n\nPost: {{ $node[\"Twitter RSS\"].json[\"title\"] }}\nLink: {{ $node[\"Twitter RSS\"].json[\"link\"] }}"
},
"name": "WhatsApp: Alerta Aluno",
"type": "n8n-nodes-base.whatsApp",
"typeVersion": 1,
"position": [300, 3900]
}
],
"connections": {
"Twitter RSS": { "main": [[ { "node": "WhatsApp: Alerta Aluno", "type": "main", "index": 0 } ]] }
}
}
VAULT n8n VJ7 // EXCLUSIVO JÚLIO FERRÃO