Monday.com Marketplace Scraper
Pricing
from $3.00 / 1,000 results
Monday.com Marketplace Scraper
Scrape the monday.com App Marketplace, browse featured, trending, editor's choice, and new apps; browse by category; or search for specific apps. Extracts app name, developer, rating, install count, payment type, categories, keywords, and direct app URL
Pricing
from $3.00 / 1,000 results
Rating
5.0
(7)
Developer
Crawler Bros
Maintained by CommunityActor stats
7
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Scrape the monday.com App Marketplace — the official app store for monday.com. Browse featured apps, explore categories like CRM, Integrations, HR, and Finance, or search for specific apps. Extracts app name, developer, rating, install count, payment type, categories, keywords, and direct app URL.
What it does
- Browse homepage — extract apps from all homepage sections (Featured, Trending this week, Editor's choice, New apps, and more)
- Browse by category — get all apps in a specific category (20 categories supported)
- Search — find apps by keyword or phrase
- Filter by payment type — show only Free, Paid, or Freemium apps
- Returns app ratings, install counts, developer names, and direct links
Input
| Field | Type | Description | Default |
|---|---|---|---|
mode | select | browse, byCategory, or search | browse |
category | select | App category (required for byCategory mode) | featured |
searchQuery | string | Search keyword (required for search mode) | CRM |
paymentType | select | Filter by payment type (optional) | All |
maxItems | integer | Maximum apps to return (1–500) | 100 |
Supported Categories
| Value | Label |
|---|---|
all-apps | All apps |
featured | Featured |
crm | CRM |
team-management | Team management |
productivity-efficiency | Productivity & efficiency |
integrations | Integrations |
collaboration | Collaboration |
reporting-analytics | Reporting & analytics |
import-export | Import & export |
views-by-monday | Views by monday |
marketing | Marketing |
editors-choice | Editor's choice |
new-apps | New apps |
software-development | Software development |
project-management | Project management |
trending-this-week | Trending this week |
design-creative | Design & creative |
hr | HR |
finance | Finance |
board-account-functionality | Board/Account functionality |
Example Inputs
Browse featured apps:
{"mode": "browse","maxItems": 50}
Browse CRM category:
{"mode": "byCategory","category": "crm","maxItems": 100}
Search for apps:
{"mode": "search","searchQuery": "Slack","paymentType": "free","maxItems": 20}
Output
Each record represents one app in the marketplace:
| Field | Type | Description |
|---|---|---|
appId | string | Unique app identifier |
appName | string | App display name |
developerName | string | Developer or company name |
appShortDescription | string | Brief app description |
paymentType | string | free, paid, or freemium |
appRating | float | Average user rating (1–5) |
installsCount | integer | Total installs |
categories | array | App categories (from chipContent) |
keywords | array | App keywords/tags |
availableForProducts | array | monday.com products the app supports |
appLogoUrl | string | App logo image URL |
appUrl | string | Direct link to the app on monday.com |
createdAt | string | ISO-8601 app creation date |
scrapedAt | string | ISO-8601 scrape timestamp |
Example Output Record
{"appId": "1234","appName": "HubSpot CRM","developerName": "HubSpot","appShortDescription": "Sync your HubSpot CRM data with monday.com","paymentType": "free","appRating": 4.7,"installsCount": 12500,"categories": ["CRM", "Integrations"],"keywords": ["crm", "sales", "hubspot"],"availableForProducts": ["monday.com", "monday sales CRM"],"appLogoUrl": "https://dapulse-res.cloudinary.com/image/upload/monday_platform/apps/logos/hubspot.png","appUrl": "https://monday.com/marketplace/apps/hubspot-crm","createdAt": "2023-01-15T00:00:00+00:00","scrapedAt": "2026-05-20T10:00:00+00:00"}
Use cases
- App discovery — find the most popular monday.com integrations for your workflow
- Competitive analysis — monitor competitor apps, ratings, and install counts
- Category research — find all free apps in Finance or HR categories
- Partnership scouting — identify high-rated developers and integrations
- Market research — track trends in monday.com app adoption
FAQ
Do I need a monday.com account? No. The monday.com Marketplace is publicly accessible and no login is required.
How many apps are available? The monday.com Marketplace has hundreds of apps across 20+ categories.
What does mode=browse return?
It extracts all apps from the homepage sections: Featured, Trending this week, Editor's choice, New apps, and Integrations sections.
Can I get all apps in a category?
Yes — use mode=byCategory with the category slug (e.g., "crm") to get all apps in that category.
Are ratings and install counts accurate? Yes — data is extracted directly from the monday.com Marketplace React Query cache, which contains live data loaded by the marketplace website.
Why use Playwright? The monday.com Marketplace is a React SPA (Single Page Application) that loads all data dynamically via API calls. Playwright renders the page and reads the React Query cache to extract the complete data.
Technical Notes
This actor uses Playwright (headless Chromium) to load the monday.com Marketplace page and extracts data from the React Query (window.marketplaceQueryClient) cache. No authentication, cookies, or proxies are required — the marketplace is fully public.