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 →
{
"name": "GlobalRegAI \u2014 Regulatory Intelligence Search",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 24
}
]
}
},
"id": "schedule-trigger",
"name": "Daily Regulatory Update (9AM)",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"url": "https://api.fda.gov/device/recall.json?limit=5&sort=report_date:desc",
"options": {}
},
"id": "fda-recalls",
"name": "FDA Device Recalls",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
460,
200
]
},
{
"parameters": {
"url": "https://api.fda.gov/drug/enforcement.json?limit=5&sort=report_date:desc",
"options": {}
},
"id": "fda-drug-enforcement",
"name": "FDA Drug Enforcement",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
460,
400
]
},
{
"parameters": {
"method": "POST",
"url": "http://ollama:11434/api/generate",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "model",
"value": "llama3.2:3b"
},
{
"name": "prompt",
"value": "=Summarize these regulatory updates in a clear, professional format for a regulatory affairs team. Focus on actionable insights.\n\nFDA Device Recalls: {{ JSON.stringify($('FDA Device Recalls').item.json.results?.slice(0,3)) }}\n\nFDA Drug Enforcement: {{ JSON.stringify($('FDA Drug Enforcement').item.json.results?.slice(0,3)) }}\n\nProvide: 1) Summary of each item, 2) Regulatory implications, 3) Action recommendations"
},
{
"name": "stream",
"value": false
}
]
}
},
"id": "summarize-updates",
"name": "AI Summarize Updates",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
680,
300
]
},
{
"parameters": {
"method": "POST",
"url": "http://qdrant:6333/collections/globalregai_regulations/points/search",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "limit",
"value": 3
},
{
"name": "with_payload",
"value": true
}
]
}
},
"id": "store-to-qdrant",
"name": "Log to Vector DB",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
900,
300
]
}
],
"connections": {
"Daily Regulatory Update (9AM)": {
"main": [
[
{
"node": "FDA Device Recalls",
"type": "main",
"index": 0
},
{
"node": "FDA Drug Enforcement",
"type": "main",
"index": 0
}
]
]
},
"FDA Device Recalls": {
"main": [
[
{
"node": "AI Summarize Updates",
"type": "main",
"index": 0
}
]
]
},
"AI Summarize Updates": {
"main": [
[
{
"node": "Log to Vector DB",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"meta": {
"description": "Runs daily: fetches FDA recalls/enforcement, summarizes with AI, logs to vector DB"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
GlobalRegAI — Regulatory Intelligence Search. Uses httpRequest. Scheduled trigger; 5 nodes.
Source: https://github.com/GlobalRegAI/GlobalRegAI/blob/8b885ab6665f28b2d8c4d47883b2ccba4bce513c/n8n-workflows/regulatory_search.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.
Absen Otomatis. Uses ssh, httpRequest. Scheduled trigger; 11 nodes.
ELYVN Deploy Verifier. Uses httpRequest. Scheduled trigger; 6 nodes.
03 · Auditoria Diária — Carlos. Uses httpRequest. Scheduled trigger; 6 nodes.
Fechamento Mensal - Automação. Uses httpRequest, emailSend. Scheduled trigger; 6 nodes.