Monday.com Marketplace Scraper avatar

Monday.com Marketplace Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Monday.com Marketplace Scraper

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

Crawler Bros

Maintained by Community

Actor stats

7

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

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

FieldTypeDescriptionDefault
modeselectbrowse, byCategory, or searchbrowse
categoryselectApp category (required for byCategory mode)featured
searchQuerystringSearch keyword (required for search mode)CRM
paymentTypeselectFilter by payment type (optional)All
maxItemsintegerMaximum apps to return (1–500)100

Supported Categories

ValueLabel
all-appsAll apps
featuredFeatured
crmCRM
team-managementTeam management
productivity-efficiencyProductivity & efficiency
integrationsIntegrations
collaborationCollaboration
reporting-analyticsReporting & analytics
import-exportImport & export
views-by-mondayViews by monday
marketingMarketing
editors-choiceEditor's choice
new-appsNew apps
software-developmentSoftware development
project-managementProject management
trending-this-weekTrending this week
design-creativeDesign & creative
hrHR
financeFinance
board-account-functionalityBoard/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:

FieldTypeDescription
appIdstringUnique app identifier
appNamestringApp display name
developerNamestringDeveloper or company name
appShortDescriptionstringBrief app description
paymentTypestringfree, paid, or freemium
appRatingfloatAverage user rating (1–5)
installsCountintegerTotal installs
categoriesarrayApp categories (from chipContent)
keywordsarrayApp keywords/tags
availableForProductsarraymonday.com products the app supports
appLogoUrlstringApp logo image URL
appUrlstringDirect link to the app on monday.com
createdAtstringISO-8601 app creation date
scrapedAtstringISO-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.