n8n Workflow

Extract Post Titles From A Blog

This n8n workflow automates tasks and integrates with various services. Extract Post Titles From A Blog - ready to import and run in your n8n instance.

n8n workflow.json

About This Script

This n8n workflow automates tasks and integrates with various services. Extract Post Titles From A Blog - ready to import and run in your n8n instance.
Features:
  • Makes HTTP requests to external APIs
Source Code
{
    "nodes": [
        {
            "name": "On clicking 'execute'",
            "type": "n8n-nodes-base.manualTrigger",
            "position": [
                250,
                300
            ],
            "parameters": [],
            "typeVersion": 1,
            "id": "ebf2eb75-0b1c-4d06-9dc9-9671e41e1fe5"
        },
        {
            "name": "HTTP Request",
            "type": "n8n-nodes-base.httpRequest",
            "position": [
                450,
                300
            ],
            "parameters": {
                "url": "https://hackernoon.com/",
                "options": [],
                "responseFormat": "string"
            },
            "typeVersion": 1,
            "id": "0f30635c-13c8-498d-8cfa-c026466c1e04"
        },
        {
            "name": "HTML Extract",
            "type": "n8n-nodes-base.htmlExtract",
            "position": [
                650,
                300
            ],
            "parameters": {
                "options": [],
                "extractionValues": {
                    "values": [
                        {
                            "key": "item",
                            "cssSelector": "h2",
                            "returnArray": true,
                            "returnValue": "html"
                        }
                    ]
                }
            },
            "typeVersion": 1,
            "id": "6def8540-fbde-4ad6-821a-8502795fff2d"
        },
        {
            "name": "HTML Extract1",
            "type": "n8n-nodes-base.htmlExtract",
            "position": [
                850,
                300
            ],
            "parameters": {
                "options": [],
                "dataPropertyName": "item",
                "extractionValues": {
                    "values": [
                        {
                            "key": "title",
                            "cssSelector": "a"
                        },
                        {
                            "key": "url",
                            "attribute": "href",
                            "cssSelector": "a",
                            "returnValue": "attribute"
                        }
                    ]
                }
            },
            "typeVersion": 1,
            "id": "5439d27a-3261-48c7-88f9-9e5ff73aea1f"
        }
    ],
    "connections": {
        "HTML Extract": {
            "main": [
                [
                    {
                        "node": "HTML Extract1",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "HTTP Request": {
            "main": [
                [
                    {
                        "node": "HTML Extract",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "On clicking 'execute'": {
            "main": [
                [
                    {
                        "node": "HTTP Request",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    },
    "n8n_version": "1.5.0"
}
Requirements
n8n instance, API credentials for connected services
Tags
#n8n #automation #workflow
Quick Actions
More in n8n Workflows