AutomationFlowsWeb Scraping › YouTube Music Add Webhook Handler

YouTube Music Add Webhook Handler

Original n8n title: Ytm Add

ytm-add. Uses httpRequest. Webhook trigger; 4 nodes.

Webhook trigger★★★★☆ complexity4 nodesHTTP Request
Web Scraping 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": "ytm-add",
  "nodes": [
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "ytm-add",
        "responseMode": "responseNode",
        "options": {}
      },
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2.1,
      "position": [
        0,
        0
      ],
      "id": "fc25c0c7-5926-445b-91c8-bc49724c1541",
      "name": "Webhook"
    },
    {
      "parameters": {
        "jsCode": "const normalize = (s) => (s || '').replace(/\\s+/g, ' ').trim();\nconst safe = (s) => normalize(s) || '';\n\nconst pageUrl = safe($input.first().json.body.pageUrl);\nif (!pageUrl) {\n  throw new Error('Missing pageUrl/url');\n}\n\nconst title = safe($input.first().json.body.title) || 'Unknown Title';\nconst artist = safe($input.first().json.body.artist) || 'Unknown Artist';\n\nreturn [{\n  url: pageUrl,\n  title,\n  artist,\n  album: 'Singles'\n}];"
      },
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        208,
        0
      ],
      "id": "fa942825-fd96-4483-95a2-ccf4a2c4a564",
      "name": "Code in JavaScript"
    },
    {
      "parameters": {
        "method": "POST",
        "url": "http://music-downloader:8000/download",
        "sendBody": true,
        "specifyBody": "json",
        "jsonBody": "={\n  \"url\": \"{{ $json.url }}\",\n  \"title\": \"{{ $json.title }}\",\n  \"artist\": \"{{ $json.artist }}\",\n  \"album\": \"{{ $json.album }}\"\n}",
        "options": {}
      },
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.4,
      "position": [
        416,
        0
      ],
      "id": "15f5f918-a26b-4ac3-bb3b-b05a6ca8c302",
      "name": "HTTP Request"
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "={\n  \"ok\": \"={{$json.ok}}\",\n  \"saved\": \"={{$json.saved}}\",\n  \"title\": \"={{$json.title}}\",\n  \"artist\": \"={{$json.artist}}\",\n  \"album\": \"={{$json.album}}\"\n}",
        "options": {}
      },
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.5,
      "position": [
        592,
        0
      ],
      "id": "0bc06986-a0ec-4e74-b6a1-7a3713641999",
      "name": "Respond to Webhook"
    }
  ],
  "connections": {
    "Webhook": {
      "main": [
        [
          {
            "node": "Code in JavaScript",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Code in JavaScript": {
      "main": [
        [
          {
            "node": "HTTP Request",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "HTTP Request": {
      "main": [
        [
          {
            "node": "Respond to Webhook",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": true,
  "settings": {
    "executionOrder": "v1",
    "binaryMode": "separate"
  },
  "versionId": "ab0857cf-9cce-45fe-9e41-8ca360386f04",
  "id": "njlZXoMK1dHpv0AD",
  "tags": []
}
Pro

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

About this workflow

ytm-add. Uses httpRequest. Webhook trigger; 4 nodes.

Source: https://github.com/piyush169/ytm-automation/blob/6707fc658ef27c37d5673f2269487f5ee8ce3ae5/n8n/ytm-add.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

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
Web Scraping

Sign PDF documents with legally-compliant digital signatures using X.509 certificates. Supports multiple PAdES signature levels (B, T, LT, LTA) with optional visible stamps.

Execute Command, HTTP Request, Read Write File +1
Web Scraping

📡 This workflow serves as the central Alpha Vantage API fetcher for Tesla trading indicators, delivering cleaned 20-point JSON outputs for three timeframes: , , and . It is required by the following a

HTTP Request