Alfred Workflows Scraper avatar

Alfred Workflows Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Alfred Workflows Scraper

Alfred Workflows Scraper

Scrape Alfred Gallery (alfred.app) for macOS Alfred app workflows. Search by keyword, browse all workflows, or filter by tag. Returns name, title, description, author, version, tags, install URL, download 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

12 days ago

Last modified

Share

Extract data from Alfred Gallery — the official directory of macOS Alfred app workflows. Alfred is an award-winning productivity app for macOS, and its gallery hosts hundreds of community-built workflows for automation, search, clipboard management, developer tools, and more.

What does this scraper do?

This actor browses Alfred Gallery's public workflow listings, fetches detail pages, and extracts structured metadata for each workflow: title, description, author, version, tags, install URL, download URL, GitHub link, forum link, icon URL, and more. No authentication or API key is required.

Input

FieldTypeDescription
modeselectRequired. search (filter by keyword) or browse (browse all/by tag)
querystringKeyword to filter workflows by (mode=search). Matches title, description, tags, author
tagselectTag to filter by (mode=browse). E.g. ai, developer, productivity, git
maxItemsintegerMax workflow records to emit (1–10000, default 100)

Example: Search for GitHub workflows

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

Example: Browse all developer workflows

{
"mode": "browse",
"tag": "developer",
"maxItems": 50
}

Example: Browse all workflows

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

Output

Each record contains:

FieldTypeDescription
workflowIdstringUnique identifier in author/slug format (e.g. vitor/wordsmith)
namestringWorkflow slug name
authorSlugstringAuthor's Alfred Gallery username
authorstringAuthor's display name
titlestringWorkflow display title
descriptionstringShort description of what the workflow does
versionstringCurrent version number
tagsarrayList of category tags
iconUrlstringURL to the workflow's icon image
installUrlstringDirect Alfred install URL
downloadUrlstringDirect download URL for the workflow file
githubUrlstringGitHub repository URL (when available)
forumUrlstringAlfred Forum discussion URL (when available)
websiteUrlstringExternal website URL (when available, non-GitHub)
sourceUrlstringAlfred Gallery page URL
recordTypestringAlways workflow
scrapedAtstringUTC ISO 8601 timestamp of when the record was scraped

Sample output

{
"workflowId": "vitor/wordsmith",
"name": "wordsmith",
"authorSlug": "vitor",
"author": "Vítor Galvão",
"title": "Wordsmith",
"description": "Local dictionary and thesaurus to lookup synonyms, antonyms, and definitions",
"version": "26.1",
"tags": ["dictionary", "thesaurus", "universal-actions"],
"iconUrl": "https://alfred.app/workflows/vitor/wordsmith/icon.png",
"installUrl": "https://alfred.app/workflows/vitor/wordsmith/install/",
"downloadUrl": "https://alfred.app/workflows/vitor/wordsmith/download/",
"githubUrl": "https://github.com/vitorgalvao/wordsmith-workflow/",
"forumUrl": "https://www.alfredforum.com/topic/23150-wordsmith",
"sourceUrl": "https://alfred.app/workflows/vitor/wordsmith/",
"recordType": "workflow",
"scrapedAt": "2026-05-30T12:00:00+00:00"
}

FAQ

Does this require an Alfred account? No. Alfred Gallery is publicly accessible without login.

What is Alfred? Alfred is a productivity app for macOS that provides hotkeys, keywords, text expansion, and custom workflow automation. Workflows require the paid Powerpack license.

What tags are available? Alfred Gallery organises workflows with 100+ tags including: ai, audio, automation, bookmarks, browser, clipboard, developer, dictionary, email, files, git, markdown, music, productivity, search, system, terminal, text, translation, utilities, video, web, and many more.

What's the difference between modes?

  • search: scrapes all workflow listing pages then fetches detail pages for workflows matching your keyword filter.
  • browse: scrapes workflow listing pages (optionally filtered by tag), then fetches detail pages for each.

Why does scraping take time? Alfred Gallery is HTML-based without a public JSON API. The actor must scrape listing pages to discover workflow IDs, then fetch individual detail pages for full metadata. A 300ms delay between requests is used to be polite to the server.

Are all available workflows included? The actor paginates through Alfred Gallery listing pages to discover workflows, subject to your maxItems limit. New workflows are added regularly to the gallery.

Data Source

All data is scraped from alfred.app — the official Alfred Gallery maintained by Running with Crayons Ltd. "Alfred" is a registered trademark of Running with Crayons Ltd.