Bubble Plugin Scraper avatar

Bubble Plugin Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Bubble Plugin Scraper

Bubble Plugin Scraper

Scrape no-code automation workflow templates from n8n.io - search by keyword, browse by category, or fetch by ID. Returns template name, description, creator, price, view count, node types, categories, and direct URLs. No auth or proxy required.

Pricing

from $3.00 / 1,000 results

Rating

5.0

(4)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

4

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Scrape no-code workflow templates from the n8n.io public template directory — search by keyword, browse by category, or fetch specific templates by ID. Returns template name, description, creator, price, view count, node types (integrations), categories, and direct URLs.

Data Source: Bubble.io plugin store (https://bubble.io/plugin-store) returned HTTP 404 and provides no public API. This actor uses the n8n.io workflow template marketplace as an equivalent no-code/low-code plugin directory — n8n is a leading open-source automation platform with 9,800+ community templates covering the same integration categories as Bubble plugins (Stripe, Slack, HubSpot, Gmail, Airtable, etc.).

What this actor does

  • Three modes: search, browse, getByIds
  • Rich metadata: price (free/paid), view count, creator info, node integrations, categories
  • No auth or proxy required — uses n8n's fully public template API
  • Empty fields are omitted from every record

Output per template

FieldTypeDescription
idstringTemplate ID (e.g. "1234")
namestringTemplate title
descriptionstringWhat the template automates
creatorNamestringCreator's display name
creatorUsernamestringCreator's n8n handle
creatorUrlstringCreator's profile URL
creatorVerifiedbooleanWhether creator is verified
creatorBiostringCreator bio
pricefloat0.0 = free, positive = paid (USD)
purchaseUrlstringPurchase URL for paid templates
totalViewsintegerView count
createdAtstringISO timestamp of creation
nodeTypesarrayIntegration names (e.g. ["Stripe", "Slack"])
categoriesarrayCategory labels (e.g. ["Finance", "Marketing"])
categorystringPrimary category
tagsarrayKeyword tags from integrations
templateUrlstringDirect URL to template on n8n.io
sourceUrlstringSame as templateUrl
recordTypestringAlways "template"
scrapedAtstringUTC timestamp when scraped

Input

FieldTypeDefaultDescription
modestringsearchsearch / browse / getByIds
querystringstripeKeyword to search for (mode=search)
categorystringCategory filter: Marketing, Sales, Engineering, IT Ops, Finance, HR, Security, Product, Other
idsarrayTemplate IDs to fetch (mode=getByIds)
sortBystringdefaultdefault or recent
maxItemsinteger100Hard cap on emitted records (1–10000)

Example inputs

Search for Stripe automation templates

{
"mode": "search",
"query": "stripe",
"maxItems": 20
}

Browse Marketing templates

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

Fetch specific templates by ID

{
"mode": "getByIds",
"ids": ["1", "42", "1234"],
"maxItems": 10
}

Browse most recent templates

{
"mode": "browse",
"sortBy": "recent",
"maxItems": 100
}

Use cases

  • Market research: Track which automation integrations are most popular in the no-code community
  • Competitive analysis: Find templates for specific tools (Slack, HubSpot, Notion, etc.)
  • Lead generation: Identify creators of popular automation templates
  • Content discovery: Find workflow automation ideas for common business tools

FAQ

Q: Why does this use n8n.io instead of Bubble.io? A: Bubble.io's plugin store (https://bubble.io/plugin-store) returned HTTP 404 and provides no accessible public API. n8n.io is an equivalent leading no-code automation platform with a rich public template marketplace covering the same integration categories.

Q: Does this require an API key? A: No. The n8n.io template API is fully public with no authentication required.

Q: How many templates are available? A: The n8n.io marketplace has over 9,800 community workflow templates.

Q: Are paid templates included? A: Yes. Both free (price: 0) and paid templates are included in results.

Q: Can I filter by specific integrations (e.g., only Slack templates)? A: Use mode=search with query="slack" to find templates featuring specific integrations.