This workflow follows the HTTP Request → OpenAI recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "n1DhoQWiUGezgX3b",
"name": "WorldModels&Jobs - DEEPSEEK INDESTRUCTIBLE",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "message",
"options": {}
},
"id": "webhook-node",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
100,
300
]
},
{
"parameters": {
"jsCode": "const crypto = require('crypto');\nconst text = $json.body.text || \"\";\nconst hash = crypto.createHash('md5').update(text).digest('hex');\nreturn { hash, original_body: $json.body };"
},
"id": "code-hash-node",
"name": "Generar MD5 Hash",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [
300,
300
]
},
{
"parameters": {
"url": "=https://worldmodels-jobs.firebaseio.com/duplicates/{{$json.hash}}.json",
"options": {}
},
"id": "firebase-check-node",
"name": "Check Duplicado",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
500,
300
]
},
{
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{$json === null}}",
"value2": true
}
]
}
},
"id": "if-new-node",
"name": "\u00bfEs Nuevo?",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
700,
300
]
},
{
"parameters": {
"method": "PUT",
"url": "=https://worldmodels-jobs.firebaseio.com/duplicates/{{$node[\"Generar MD5 Hash\"].json.hash}}.json",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={ \"timestamp\": { \".sv\": \"timestamp\" } }",
"options": {}
},
"id": "firebase-mark-node",
"name": "Marcar como Visto",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
900,
200
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$node[\"Generar MD5 Hash\"].json.original_body.text.length}}",
"operation": "largerEqual",
"value2": 50
},
{
"value1": "={{$node[\"Generar MD5 Hash\"].json.original_body.text}}",
"operation": "regex",
"value2": ".*\\d+.*"
}
]
},
"combineOperation": "all"
},
"id": "filter-security-node",
"name": "Filtro: +50 chars & N\u00fameros",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
1100,
200
]
},
{
"parameters": {
"modelId": {
"__rl": true,
"value": "deepseek-chat",
"mode": "list",
"cachedResultName": "DEEPSEEK-CHAT"
},
"messages": {
"values": [
{
"content": "=\"Eres un experto moderador de ofertas de empleo de imagen y eventos. Tu objetivo es profesionalizar mensajes de Telegram.\\n\\n1. Traduce todo al espa\u00f1ol de forma elegante.\\n2. Extrae obligatoriamente: categoria (Imagen, Azafata/o, Acompa\u00f1ante de Viaje, Protocolo o Extra Evento), ubicacion, pago (o 'A convenir'), duracion, contacto (Tel\u00e9fono/Telegram).\\n3. Genera un 'titulo_web' atractivo y una 'descripcion_limpia' profesional.\\n4. Si el mensaje es una oferta clara con contacto, a\u00f1ade la variable 'valido': true. Si es basura o falta el contacto, pon 'valido': false.\\n5. Devuelve EXCLUSIVAMENTE un bloque JSON v\u00e1lido.\\n\\nMensaje a analizar: \" + $node[\"Generar MD5 Hash\"].json.original_body.text"
}
]
},
"options": {
"responseFormat": "json_object"
}
},
"id": "deepseek-node",
"name": "DeepSeek AI (Indestructible)",
"type": "@n8n/n8n-nodes-langchain.openAi",
"typeVersion": 2.1,
"position": [
1300,
200
],
"credentials": {
"openAiApi": {
"name": "<your credential>"
}
},
"retryOnFail": true,
"maxRetries": 3,
"waitBetweenRetries": 5000
},
{
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{ JSON.parse($json.message.content).valido }}",
"value2": true
}
]
}
},
"id": "filter-valid-node",
"name": "Filtro: V\u00e1lido",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
1500,
200
]
},
{
"parameters": {
"method": "POST",
"url": "https://api-v2-bgr45y36sq-ew.a.run.app/api/leads",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "data",
"value": "={{$node[\"DeepSeek AI (Indestructible)\"].json.message.content}}"
}
]
},
"options": {}
},
"id": "firebase-save-node",
"name": "Guardar en Firebase",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
1700,
200
]
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Generar MD5 Hash",
"type": "main",
"index": 0
}
]
]
},
"Generar MD5 Hash": {
"main": [
[
{
"node": "Check Duplicado",
"type": "main",
"index": 0
}
]
]
},
"Check Duplicado": {
"main": [
[
{
"node": "\u00bfEs Nuevo?",
"type": "main",
"index": 0
}
]
]
},
"\u00bfEs Nuevo?": {
"main": [
[
{
"node": "Marcar como Visto",
"type": "main",
"index": 0
}
]
]
},
"Marcar como Visto": {
"main": [
[
{
"node": "Filtro: +50 chars & N\u00fameros",
"type": "main",
"index": 0
}
]
]
},
"Filtro: +50 chars & N\u00fameros": {
"main": [
[
{
"node": "DeepSeek AI (Indestructible)",
"type": "main",
"index": 0
}
]
]
},
"DeepSeek AI (Indestructible)": {
"main": [
[
{
"node": "Filtro: V\u00e1lido",
"type": "main",
"index": 0
}
]
]
},
"Filtro: V\u00e1lido": {
"main": [
[
{
"node": "Guardar en Firebase",
"type": "main",
"index": 0
}
]
]
}
},
"active": true
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
openAiApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
WorldModels&Jobs - DEEPSEEK INDESTRUCTIBLE. Uses httpRequest, openAi. Webhook trigger; 9 nodes.
Source: https://github.com/CFZ6S2/worldmodelsjobs/blob/462d2afe6696c84b14fdfea359c1cb357a72be3e/n8n/versions/workflow.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This workflow captures new leads via webhook, enriches and scores them with Apollo and Google Gemini, logs everything in Google Sheets, and automates outreach, reply handling, follow-ups, meeting prep
This powerful n8n automation workflow is designed to execute advanced B2B lead enrichment and hyper-personalization for cold email outreach. By orchestrating a complex chain of data scraping, AI analy
Propulsar — Content Engine v3. Uses openAi, httpRequest, googleSheets. Webhook trigger; 73 nodes.
Eu Clara – Funil Kiwify Completo. Uses postgres, openAi, httpRequest, gmail. Webhook trigger; 70 nodes.
Postagem Redes — Portal: Ações. Uses openAi, googleGemini, ollama, httpRequest. Webhook trigger; 58 nodes.