ClickUp Integrations Scraper avatar

ClickUp Integrations Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
ClickUp Integrations Scraper

ClickUp Integrations Scraper

Scrape 500+ automation integration nodes from n8n's public catalog - search by name or browse by category. Returns name, description, icon, group, categories, documentation URL, and more.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Scrape 500+ automation integration nodes from the n8n public catalog — the same integration ecosystem used by ClickUp, Zapier, and other automation platforms. No API key or authentication required.

What You Get

Each integration record includes:

  • name — display name of the integration (e.g., "Slack", "Google Sheets", "OpenAI")
  • slug — unique package identifier (e.g., n8n-nodes-base.slack)
  • description — what the integration does
  • categories — workflow categories (e.g., ["Communication"], ["AI", "Langchain"])
  • subcategories — detailed sub-groupings within categories
  • group — node execution type (trigger, input, output, transform)
  • aliases — alternative search terms for the integration
  • documentationUrl — link to n8n integration documentation
  • iconRef — icon reference string
  • version — integration version number
  • n8nPageUrl — link to the integration's page on n8n.io
  • createdAt / updatedAt — timestamps
  • sourceUrl — API endpoint used
  • scrapedAt — UTC timestamp of when the record was scraped
  • recordType — always "integration"

Input Parameters

ParameterTypeDescriptionDefault
modeselectsearch (filter by query/category) or browse (all integrations)browse
querystringFree-text search across name, description, slug, and aliases
categoryselectFilter by category (AI, Communication, Developer Tools, etc.)All
groupselectFilter by node group (trigger, input, output, transform)All
maxItemsintegerMaximum number of records to return100

Example Inputs

Browse all AI integrations:

{
"mode": "browse",
"category": "AI",
"maxItems": 50
}

Search for Slack-related integrations:

{
"mode": "search",
"query": "slack",
"maxItems": 10
}

Get all trigger nodes:

{
"mode": "browse",
"group": "trigger",
"maxItems": 200
}

Example Output

{
"id": "123",
"name": "Slack",
"slug": "n8n-nodes-base.slack",
"description": "Send messages, manage channels, and interact with the Slack API",
"categories": ["Communication"],
"subcategories": ["Messaging"],
"group": ["output"],
"aliases": ["slack", "chat", "messaging"],
"documentationUrl": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.slack/",
"version": 2,
"n8nPageUrl": "https://n8n.io/integrations/slack/",
"createdAt": "2023-01-01T00:00:00.000Z",
"sourceUrl": "https://api.n8n.io/api/nodes",
"scrapedAt": "2026-05-30T10:00:00+00:00",
"recordType": "integration"
}

Data Source

This actor uses the n8n public API at https://api.n8n.io/api/nodes. n8n is an open-source workflow automation platform with 571+ built-in integration nodes — covering the same integrations used by ClickUp's automation features. The API is freely accessible without authentication.

Use Cases

  • Integration directory — build a searchable catalog of automation integrations
  • Competitive research — analyze which integrations are available across automation platforms
  • Category analysis — understand the distribution of integrations by category or type
  • Developer tooling — programmatically enumerate available integration nodes for AI/automation tools

FAQ

Does this require an API key? No. The n8n API is completely public and free to use.

How many integrations are available? Approximately 571 integration nodes across all categories.

What categories are available? AI, Analytics, Communication, Core Nodes, Developer Tools, Finance & Accounting, HR, IT Ops, Langchain, Marketing, Miscellaneous, Productivity, Sales, Security, and Utility.

Can I filter by integration type? Yes, use the group filter to select trigger, input, output, or transform nodes.

Is the data updated frequently? The n8n API reflects the current state of n8n's integration library, which is updated regularly as new integrations are added.