Adobe Commerce Marketplace Scraper avatar

Adobe Commerce Marketplace Scraper

Under maintenance

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Adobe Commerce Marketplace Scraper

Adobe Commerce Marketplace Scraper

Under maintenance

Scrape 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

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

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)

FieldTypeDescription
idstringInternal product ID
slugstringURL slug (e.g. stripe-stripe-payments)
namestringExtension name
descriptionstringFull description (HTML stripped)
shortDescriptionstringShort description if available
skustringComposer package name (e.g. stripe/stripe-payments)
categoriesarrayCategory path (e.g. ["Extensions", "Payments & Security"])
developerNamestringExtension developer / seller name
developerUrlstringDeveloper's marketplace profile URL
integratorNamestringIntegration company name
contactEmailstringVendor contact email
pricenumberPrice in USD (0 for free)
priceCurrencystringCurrency code (e.g. USD)
ratingnumberAverage rating (0–5)
reviewCountintegerNumber of reviews
currentVersionstringLatest version (e.g. 4.5.0)
compatibleWitharrayPlatform/version compatibility list
buildTypestringBuild type (e.g. Stable Build)
updatedAtstringLast updated date
licenseTypestringLicense type
iconUrlstringExtension icon image URL
screenshotUrlsarrayScreenshot image URLs
productUrlstringFull marketplace product URL
recordTypestringAlways extension
scrapedAtstringUTC ISO timestamp

Input

ParameterTypeDescription
modeselectsearch, browse, or getBySlug
querystringSearch keyword (required for search mode)
categoryselectCategory slug (required for browse, optional for search)
slugsarrayExtension slugs for getBySlug mode
maxItemsintegerMax results to return (default: 100, max: 10000)

Available categories

SlugName
payments-securityPayments & Security
marketing-automation-email-marketingMarketing & Email Marketing
shipping-fulfillmentShipping & Fulfillment
customer-supportCustomer Support
accounting-financeAccounting & Finance
site-optimizationSite Optimization
content-customizationsContent & Customizations
reporting-analyticsReporting & Analytics
inventory-order-managementInventory & Order Management
b2bB2B
erpERP

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.