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": "LA Parcel Ingest",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 24
}
]
}
},
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"url": "https://app.regrid.com/api/v1/search.json",
"authentication": "none",
"method": "GET",
"queryParameters": {
"parameters": [
{
"name": "token",
"value": "={{$env.REGRID_API_KEY}}"
},
{
"name": "query",
"value": "Los Angeles County"
},
{
"name": "use_code",
"value": "commercial"
},
{
"name": "limit",
"value": "100"
}
]
}
},
"name": "Regrid Parcel Search",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
460,
300
]
},
{
"parameters": {
"method": "POST",
"url": "http://localhost:4000/enrich",
"authentication": "none",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "prospect_id",
"value": "={{$json.id}}"
},
{
"name": "deed_owner_raw",
"value": "={{$json.owner}}"
}
]
}
},
"name": "Trigger Enrichment",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
680,
300
]
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "Regrid Parcel Search",
"type": "main",
"index": 0
}
]
]
},
"Regrid Parcel Search": {
"main": [
[
{
"node": "Trigger Enrichment",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
LA Parcel Ingest. Uses httpRequest. Scheduled trigger; 3 nodes.
Source: https://github.com/DrBlack333/openclaw-reroof/blob/ef5129a738fd019041426f91bb08523ab943b77e/n8n-workflows/01-la-parcel-ingest.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.
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.