AutomationFlowsEmail & Gmail › Fetch Mailchimp Lists via Webhook

Fetch Mailchimp Lists via Webhook

Original n8n title: Mailchimp - Get All Lists

Mailchimp - Get All Lists. Uses httpRequest. Webhook trigger; 4 nodes.

Webhook trigger★★★★☆ complexity4 nodesHTTP Request
Email & Gmail Trigger: Webhook Nodes: 4 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": "Mailchimp - Get All Lists",
  "nodes": [
    {
      "parameters": {
        "path": "mailchimp-get-lists",
        "options": {}
      },
      "id": "webhook-trigger",
      "name": "Webhook Trigger",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 1,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "method": "GET",
        "url": "https://us21.api.mailchimp.com/3.0/lists",
        "authentication": "headerAuth",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "Bearer YOUR_MAILCHIMP_API_KEY"
            }
          ]
        },
        "options": {
          "queryParameters": {
            "parameters": [
              {
                "name": "count",
                "value": "100"
              }
            ]
          }
        }
      },
      "id": "get-lists",
      "name": "Get All Lists",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        450,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "// Formatiere Listen f\u00fcr bessere Lesbarkeit\nconst response = $input.item.json;\nconst lists = response.lists || [];\n\n// Erstelle \u00fcbersichtliche Liste\nconst formattedLists = lists.map(list => ({\n  id: list.id,\n  name: list.name,\n  member_count: list.stats?.member_count || 0,\n  created_at: list.date_created || 'N/A',\n  web_id: list.web_id || 'N/A'\n}));\n\nreturn [{\n  json: {\n    total_lists: lists.length,\n    lists: formattedLists,\n    message: 'Verwende die \"id\" als MAILCHIMP_LIST_ID'\n  }\n}];"
      },
      "id": "format-lists",
      "name": "Format Lists",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        650,
        300
      ]
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "={{ $json }}"
      },
      "id": "respond",
      "name": "Respond with Lists",
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1,
      "position": [
        850,
        300
      ]
    }
  ],
  "connections": {
    "Webhook Trigger": {
      "main": [
        [
          {
            "node": "Get All Lists",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get All Lists": {
      "main": [
        [
          {
            "node": "Format Lists",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Format Lists": {
      "main": [
        [
          {
            "node": "Respond with Lists",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "staticData": null,
  "tags": [],
  "triggerCount": 1,
  "updatedAt": "2025-12-16T00: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

Mailchimp - Get All Lists. Uses httpRequest. Webhook trigger; 4 nodes.

Source: https://github.com/Heiko888/Connection-Key-MCP-Server/blob/5fb3234c408ac53857f70f672749a6591ea5af7f/n8n-workflows/mailchimp-get-lists.json — original creator credit. Request a take-down →

More Email & Gmail workflows → · Browse all categories →

Related workflows

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

Email & Gmail

Automate WhatsApp communication for recruitment agencies with an interactive, structured customer experience. This workflow handles pricing inquiries, request submissions, tracking, complaints, and hu

HTTP Request, Google Sheets, Gmail +1
Email & Gmail

This template turns Podium's conversation inbox into a full sales CRM with a custom funnel, AI message classification, automated drip follow-ups, daily admin reports, and a live Kanban dashboard. Six

HTTP Request, Google Sheets, Gmail
Email & Gmail

Suspicious_login_detection. Uses postgres, httpRequest, noOp, html. Webhook trigger; 43 nodes.

Postgres, HTTP Request, Gmail +1
Email & Gmail

This n8n workflow is designed for security monitoring and incident response when suspicious login events are detected. It can be initiated either manually from within the n8n UI for testing or automat

Postgres, HTTP Request, Gmail +1
Email & Gmail

This workflow automates a document approval process using Supabase and Gmail. Teams that need structured multi-level document approvals. Companies managing policies, contracts, or proposals. Medical d

Supabase, Crypto, Gmail +3