AutomationFlowsWeb Scraping › Vehicle Lookup — Auto-ways Siv

Vehicle Lookup — Auto-ways Siv

Vehicle Lookup — Auto-Ways SIV. Uses httpRequest. Webhook trigger; 7 nodes.

Webhook trigger★★★★☆ complexity7 nodesHTTP Request
Web Scraping Trigger: Webhook Nodes: 7 Complexity: ★★★★☆ Added:

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 →

Download .json
{
  "name": "Vehicle Lookup \u2014 Auto-Ways SIV",
  "nodes": [
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "vehicle-lookup",
        "responseMode": "responseNode",
        "options": {}
      },
      "id": "webhook-node",
      "name": "Webhook",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        240,
        300
      ]
    },
    {
      "parameters": {
        "rules": {
          "values": [
            {
              "conditions": {
                "options": {
                  "caseSensitive": true,
                  "leftValue": "",
                  "typeValidation": "strict"
                },
                "conditions": [
                  {
                    "leftValue": "={{ $json.body.plaque }}",
                    "rightValue": "",
                    "operator": {
                      "type": "string",
                      "operation": "isNotEmpty"
                    }
                  }
                ],
                "combinator": "and"
              },
              "renameOutput": true,
              "outputKey": "plate"
            },
            {
              "conditions": {
                "options": {
                  "caseSensitive": true,
                  "leftValue": "",
                  "typeValidation": "strict"
                },
                "conditions": [
                  {
                    "leftValue": "={{ $json.body.vin }}",
                    "rightValue": "",
                    "operator": {
                      "type": "string",
                      "operation": "isNotEmpty"
                    }
                  }
                ],
                "combinator": "and"
              },
              "renameOutput": true,
              "outputKey": "vin"
            }
          ]
        },
        "options": {}
      },
      "id": "switch-node",
      "name": "Switch",
      "type": "n8n-nodes-base.switch",
      "typeVersion": 3,
      "position": [
        460,
        300
      ]
    },
    {
      "parameters": {
        "method": "GET",
        "url": "https://app.auto-ways.net/api/v1/fr",
        "sendQuery": true,
        "queryParameters": {
          "parameters": [
            {
              "name": "plaque",
              "value": "={{ $('Webhook').item.json.body.plaque }}"
            },
            {
              "name": "token",
              "value": "={{ $env.AUTOWAYS_TOKEN }}"
            },
            {
              "name": "country",
              "value": "fr"
            }
          ]
        },
        "options": {}
      },
      "id": "http-plate-node",
      "name": "Auto-Ways \u2014 Plaque",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        680,
        180
      ]
    },
    {
      "parameters": {
        "method": "GET",
        "url": "https://app.auto-ways.net/api/v1/vin",
        "sendQuery": true,
        "queryParameters": {
          "parameters": [
            {
              "name": "vin",
              "value": "={{ $('Webhook').item.json.body.vin }}"
            },
            {
              "name": "token",
              "value": "={{ $env.AUTOWAYS_TOKEN }}"
            },
            {
              "name": "output_lang",
              "value": "fr"
            }
          ]
        },
        "options": {}
      },
      "id": "http-vin-node",
      "name": "Auto-Ways \u2014 VIN",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        680,
        420
      ]
    },
    {
      "parameters": {
        "mode": "passThrough",
        "output": "input1"
      },
      "id": "merge-node",
      "name": "Merge",
      "type": "n8n-nodes-base.merge",
      "typeVersion": 3,
      "position": [
        900,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "const d = $input.first().json?.data || {}\nconst energieMap = {\n  'DIESEL': 'Diesel',\n  'ESSENCE': 'Essence',\n  'ELECTRIQUE': '\u00c9lectrique',\n  'HYBRIDE': 'Hybride',\n  'GPL': 'GPL',\n  'GNV': 'GNV'\n}\nreturn [{\n  json: {\n    marque: (d.marque || '').trim(),\n    modele: (d.modele || '').trim(),\n    annee: d.date1erCir_us ? d.date1erCir_us.slice(0,4) : '',\n    carburant: energieMap[d.energieNGC] || d.energieNGC || '',\n    puissance_ch: d.puisFiscReelCH || '',\n    puissance_kw: d.puisFiscReelKW || '',\n    co2: d.co2 || '',\n    carrosserie: d.carrosserieCG || '',\n    vin: d.vin || '',\n    plaque: d.immat || '',\n    couleur: d.couleur || '',\n    date_mise_circulation: d.date1erCir_fr || '',\n    source: 'SIV France (ANTS)',\n  }\n}]"
      },
      "id": "code-normalize-node",
      "name": "Normaliser r\u00e9ponse",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        1120,
        300
      ]
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "={{ $json }}",
        "options": {}
      },
      "id": "respond-node",
      "name": "Respond to Webhook",
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.1,
      "position": [
        1340,
        300
      ]
    }
  ],
  "connections": {
    "Webhook": {
      "main": [
        [
          {
            "node": "Switch",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Switch": {
      "main": [
        [
          {
            "node": "Auto-Ways \u2014 Plaque",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Auto-Ways \u2014 VIN",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Auto-Ways \u2014 Plaque": {
      "main": [
        [
          {
            "node": "Merge",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Auto-Ways \u2014 VIN": {
      "main": [
        [
          {
            "node": "Merge",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "Merge": {
      "main": [
        [
          {
            "node": "Normaliser r\u00e9ponse",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Normaliser r\u00e9ponse": {
      "main": [
        [
          {
            "node": "Respond to Webhook",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "staticData": null,
  "tags": [],
  "triggerCount": 0,
  "updatedAt": "2026-03-21T00:00:00.000Z",
  "versionId": "1"
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Vehicle Lookup — Auto-Ways SIV. Uses httpRequest. Webhook trigger; 7 nodes.

Source: https://github.com/mystarten/copilote/blob/198c157e28379f8ac40d7a50e7460422d3baa2b4/n8n-workflows/vehicle-lookup.json — original creator credit. Request a take-down →

More Web Scraping workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Web Scraping

This n8n template provides enterprise-level version control for your workflows using GitHub integration. Stop losing hours to broken workflows and manual exports – get proper commit history, visual di

n8n, Execute Workflow Trigger, HTTP Request +1
Web Scraping

This flow creates dummy files for every item added in your *Arrs (Radarr/Sonarr) with the tag .

HTTP Request, Ssh
Web Scraping

eek-Go v2 (Batch-Then-Review). Uses httpRequest. Webhook trigger; 75 nodes.

HTTP Request
Web Scraping

This workflow receives webhook requests from a content calendar and uses the X API v2 to publish text posts, threads, image/video posts, and polls, as well as delete existing posts and run a credentia

HTTP Request
Web Scraping

This workflow acts as a central API gateway for all technical indicator agents in the Binance Spot Market Quant AI system. It listens for incoming webhook requests and dynamically routes them to the c

HTTP Request