Adobe Commerce Marketplace Scraper
Under maintenancePricing
from $3.00 / 1,000 results
Adobe Commerce Marketplace Scraper
Under maintenanceScrape Adobe Commerce Marketplace (formerly Magento Marketplace) - search 3700+ extensions by keyword or category, browse by type, or fetch details by slug. Returns name, description, categories, developer, pricing, rating, review count, version, compatibility, icon, screenshots, and more.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Crawler Bros
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Scrape Adobe Commerce Marketplace (formerly Magento Marketplace) — the official marketplace for 3,700+ Adobe Commerce and Magento 2 extensions. Search by keyword, browse by category, or fetch specific extensions by slug. Returns full metadata including name, description, categories, developer details, pricing, rating, version, compatibility, screenshots, and more.
No authentication, no proxy, no paid add-ons required. Works entirely via the public REST search API and HTML parsing.
What this actor does
- Three modes:
search,browse,getBySlug - Rich metadata: name, description, categories, developer name & URL, pricing, rating, review count, current version, compatibility (Adobe Commerce cloud/on-prem/Magento Open Source), screenshots, license type, and build type
- Search by keyword: Find extensions matching any text query (e.g. "payment gateway", "SEO", "shipping")
- Browse by category: Get all extensions in Payments & Security, Shipping, Marketing, Customer Support, and more
- Fetch by slug: Direct lookup of known extensions by their URL slug
- Empty fields omitted: Only fields with real data are included in output
Output fields (per extension)
| Field | Type | Description |
|---|---|---|
id | string | Internal product ID |
slug | string | URL slug (e.g. stripe-stripe-payments) |
name | string | Extension name |
description | string | Full description (HTML stripped) |
shortDescription | string | Short description if available |
sku | string | Composer package name (e.g. stripe/stripe-payments) |
categories | array | Category path (e.g. ["Extensions", "Payments & Security"]) |
developerName | string | Extension developer / seller name |
developerUrl | string | Developer's marketplace profile URL |
integratorName | string | Integration company name |
contactEmail | string | Vendor contact email |
price | number | Price in USD (0 for free) |
priceCurrency | string | Currency code (e.g. USD) |
rating | number | Average rating (0–5) |
reviewCount | integer | Number of reviews |
currentVersion | string | Latest version (e.g. 4.5.0) |
compatibleWith | array | Platform/version compatibility list |
buildType | string | Build type (e.g. Stable Build) |
updatedAt | string | Last updated date |
licenseType | string | License type |
iconUrl | string | Extension icon image URL |
screenshotUrls | array | Screenshot image URLs |
productUrl | string | Full marketplace product URL |
recordType | string | Always extension |
scrapedAt | string | UTC ISO timestamp |
Input
| Parameter | Type | Description |
|---|---|---|
mode | select | search, browse, or getBySlug |
query | string | Search keyword (required for search mode) |
category | select | Category slug (required for browse, optional for search) |
slugs | array | Extension slugs for getBySlug mode |
maxItems | integer | Max results to return (default: 100, max: 10000) |
Available categories
| Slug | Name |
|---|---|
payments-security | Payments & Security |
marketing-automation-email-marketing | Marketing & Email Marketing |
shipping-fulfillment | Shipping & Fulfillment |
customer-support | Customer Support |
accounting-finance | Accounting & Finance |
site-optimization | Site Optimization |
content-customizations | Content & Customizations |
reporting-analytics | Reporting & Analytics |
inventory-order-management | Inventory & Order Management |
b2b | B2B |
erp | ERP |
Example inputs
Search for payment extensions:
{"mode": "search","query": "payment","maxItems": 20}
Browse Payments & Security category:
{"mode": "browse","category": "payments-security","maxItems": 50}
Fetch a specific extension by slug:
{"mode": "getBySlug","slugs": ["stripe-stripe-payments", "braintree-magento2-braintree"]}
FAQs
What is Adobe Commerce Marketplace? Adobe Commerce Marketplace (formerly Magento Marketplace) is the official store for extensions, integrations, and themes for Adobe Commerce and Magento 2 e-commerce platforms. It hosts 3,700+ extensions from third-party developers.
Do I need an Adobe account? No. All data is scraped from publicly available marketplace pages — no login or API key required.
What is a "slug"?
The slug is the URL path of an extension. For example, stripe-stripe-payments is the slug for https://commercemarketplace.adobe.com/stripe-stripe-payments.html.
How many extensions can I scrape?
The marketplace has ~3,700 active extensions. Set maxItems up to 10,000 to retrieve all of them.
Are ratings available for all extensions?
Ratings only appear when an extension has received reviews. Extensions without any reviews will not have rating or reviewCount fields.
Why does fetching many extensions take time? Each extension requires fetching its dedicated product page to extract full metadata. A small delay between requests ensures reliable scraping.
Data source
Data is fetched from commercemarketplace.adobe.com using the public REST search API for discovery and HTML parsing with Schema.org JSON-LD extraction for product details. No authentication required.