Skip to main content

Pulling data from services that n8n doesn’t have a pre-built integration for

Workflow preview

Workflow preview
100%
Pulling data from services that n8n doesn’t have a pre-built integration for preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

You still can use the app in a workflow even if we don’t have a node for that or the existing operation for that. With the HTTP Request node, it is possible to call any API point and use the incomi...

Best for

  • Engineering automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.manualtrigger, n8n-nodes-base.stickynote, n8n-nodes-base.set, n8n-nodes-base.itemlists, n8n-nodes-base.htmlextract, n8n-nodes-base.if, n8n-nodes-base.httprequest

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Jonathan.

Original n8n.io source

1.1 Workflow description

Title
Pulling data from services that n8n doesn’t have a pre-built integration for
Workflow name
Pulling data from services that n8n doesn’t have a pre-built integration for

You still can use the app in a workflow even if we don’t have a node for that or the existing operation for that. With the HTTP Request node, it is possible to call any API point and use the incoming data in your workflow

Main use cases:

  • Connect with apps and services that n8n doesn’t have integration with
  • Web scraping

How it works This workflow can be divided into three branches, each serving a distinct purpose:

1.Splitting into Items (HTTP Request - Get Mock Albums):

  • The workflow initiates with a manual trigger (On clicking 'execute').
  • It performs an HTTP request to retrieve mock albums data from "https://jsonplaceholder.typicode.com/albums."
  • The obtained data is split into items using the Item Lists node, facilitating easier management.

2.Data Scraping (HTTP Request - Get Wikipedia Page and HTML Extract):

  • Another branch of the workflow involves fetching a random Wikipedia page using an HTTP request to "https://en.wikipedia.org/wiki/Special:Random."
  • The HTML Extract node extracts the article title from the fetched Wikipedia page.

3.Handling Pagination (The final branch deals with handling pagination for a GitHub API request):

  • It sends an HTTP request to "https://api.github.com/users/that-one-tom/starred," with parameters like the page number and items per page dynamically set by the Set node.
  • The workflow uses conditions (If - Are we finished?) to check if there are more pages to retrieve and increments the page number accordingly (Set - Increment Page).
  • This process repeats until all pages are fetched, allowing for comprehensive data retrieval.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - On clicking 'execute'

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 2 - Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Set

Type / Role
n8n-nodes-base.set - set
Config choices
Version 1

Block 5 - Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Item Lists - Create Items from Body

Type / Role
n8n-nodes-base.itemLists - itemLists
Config choices
Version 1

Block 8 - HTML Extract - Extract Article Title

Type / Role
n8n-nodes-base.htmlExtract - htmlExtract
Config choices
Version 1

Block 9 - Item Lists - Fetch Body

Type / Role
n8n-nodes-base.itemLists - itemLists
Config choices
Version 1

Block 10 - If - Are we finished?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 1

Block 11 - Set - Increment Page

Type / Role
n8n-nodes-base.set - set
Config choices
Version 1

Block 12 - HTTP Request - Get Mock Albums

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 3

Block 13 - HTTP Request - Get Wikipedia Page

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 3

Block 14 - HTTP Request - Get my Stars

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 3

3. Summary Table

Workflow Pulling data from services that n8n doesn’t have a pre-built integration for
Complexity intermediate
Nodes 14
Categories Engineering
Author Jonathan
Published 06 Jul 2022

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/1748/1748.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Pulling data from services that n8n doesn’t have a pre-built integration for do?

You still can use the app in a workflow even if we don’t have a node for that or the existing operation for that. With the HTTP Request node, it is possible to call any API point and use the incomi...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Engineering use case.