Raycast Store Scraper - Extension Catalog Export avatar

Raycast Store Scraper - Extension Catalog Export

Pricing

Pay per event

Go to Apify Store
Raycast Store Scraper - Extension Catalog Export

Raycast Store Scraper - Extension Catalog Export

Scrape the Raycast Store extension catalog (2,800+ extensions). Get metadata, commands, tools, AI prompts, author profiles, and source-repo URLs. Filter by platform (macOS/Windows) or search by keyword. First Apify actor for the Raycast Store.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

25 days ago

Last modified

Share

Raycast Store Scraper — Extension Catalog and Metadata

Export the full extension catalog from the Raycast Store — the public marketplace for Raycast extensions on macOS and Windows. Returns flat JSON records for every extension, including commands, AI tools, author profiles, download counts, and source-repo URLs. No authentication required.

What does the Raycast Store Scraper do?

The scraper hits Raycast's public JSON API to pull all 2,800+ extensions in a single paginated run. Two modes are available: catalog streams every extension in popularity order; search finds extensions matching a keyword. You can further filter by platform (macOS or Windows) and cap results with maxItems.

What data does it extract?

FieldTypeDescription
extension_idstringRaycast extension UUID
namestringExtension slug (e.g. linear)
titlestringDisplay title
descriptionstringShort description
platformsstring[]Supported platforms (macOS, Windows)
categoriesstring[]Display category names (e.g. Developer Tools, AI Extensions)
seo_categoriesstring[]URL-friendly category slugs
access_statusstringpublic or private
statusstringactive or archived
download_countnumberTotal cumulative installs at scrape time
created_atnumberCreation timestamp (Unix epoch seconds)
updated_atnumberLast update timestamp (Unix epoch seconds)
extension_urlstringRaycast Store page URL
source_urlstringGitHub source repository URL
readme_urlstringREADME file URL on GitHub
icon_urlstringExtension icon URL (light theme)
icon_dark_urlstringExtension icon URL (dark theme)
author_handlestringAuthor username
author_namestringAuthor display name
author_biostringAuthor biography
author_githubstringGitHub handle
author_twitterstringTwitter/X handle
author_locationstringAuthor location
author_websitestringAuthor website
author_avatar_urlstringAuthor avatar URL
commandsstring[]Commands as "name: title — description" strings
toolsstring[]AI tools as "name: title — description" strings
api_versionstringRaycast API version targeted
commit_shastringPublished git commit SHA

How to use it

Full catalog run:

{
"mode": "catalog",
"maxItems": 0
}

Search mode — find GitHub-related extensions:

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

Sample of the top 500 most-downloaded extensions (completes in under 5 minutes):

{
"mode": "catalog",
"maxItems": 500
}

The catalog is returned in popularity order by default, so maxItems: 500 gives you the 500 most-downloaded extensions.

FieldTypeDefaultDescription
modestringcatalogcatalog = full store, search = keyword search
querystring""Search keyword — required in search mode
platformstring"""" (all), "macOS", or "Windows"
maxItemsinteger10Cap on records. 0 = no limit (full catalog).

Pricing

Pay-per-record: $0.001 per extension plus $0.10 per run start. The math for the full catalog of 2,800 extensions: $0.001 × 2,800 + $0.10 = approximately $2.90. A sample of 500 extensions costs approximately $0.60.

Use cases

  • Technical recruiters — The download_count + source_url + author_github combination gives you a ranked list of active macOS developer-tooling contributors. The top 50 most-downloaded extensions by author GitHub handle is a direct list of highly active developer-experience engineers who ship public tools.

  • VC and analyst intelligence — Export the full catalog sorted by download_count, then filter for extensions with 100k+ downloads that have an active source_url GitHub repo. Those are the highest-signal extension authors — the ones building things people actually install.

  • Developer tool market research — Track which categories are growing, which extensions are gaining downloads fastest, and which authors dominate specific verticals (productivity, AI, developer tools).

  • AI extension builders — Survey existing AI tool definitions (the tools field) and command structures before designing a competitor or complement.

  • Ecosystem completeness analysis — Cross-reference source_url against a list of popular SaaS products to find which ones already have Raycast integrations and which are missing one.

FAQ

Does this scraper need authentication? No. Raycast's extension API is fully public — no token, no account.

What are the commands and tools fields? Commands are the action palette entries an extension adds to Raycast. Tools are AI-callable functions the extension registers. Both are flattened to human-readable strings ("name: title — description") for spreadsheet compatibility.

Can I export to CSV or Excel? Yes. Apify supports JSON, CSV, and Excel export from the dataset view.