Atlassian Marketplace Reviews Scraper avatar

Atlassian Marketplace Reviews Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Atlassian Marketplace Reviews Scraper

Atlassian Marketplace Reviews Scraper

Scrape reviews for any Atlassian Marketplace app by addon key. Extracts reviewer name, rating, review text, date, helpful votes, version, and hosting

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

Extract user reviews for any app on the Atlassian Marketplace. Get reviewer details, star ratings, review text, helpful votes, version, and hosting type — no API key or login required.

What this actor does

This actor scrapes all publicly visible reviews for a specific Atlassian Marketplace addon (app). Given an addon key (e.g., is.origo.jira.tempo-plugin), it paginates through all reviews and delivers structured data you can analyze, export, or feed into review monitoring pipelines.

Why use this actor?

  • Reputation monitoring — track what users say about your product over time
  • Competitive intelligence — read reviews for competitor apps to identify pain points
  • Sentiment analysis — bulk-collect review text for NLP pipelines
  • Support insights — discover common complaints or feature requests from reviews

Input

FieldTypeDescriptionDefault
addonKeystringThe unique addon key to scrape reviews for (required)is.origo.jira.tempo-plugin
maxItemsintegerMaximum number of reviews to return (1–500)100
minRatingselectOnly include reviews with rating ≥ this value (1–5 stars)
sortByselecthelpful (most helpful first) or recent (newest first)helpful
hostingselectFilter to cloud, server, or datacenter reviews only

Example inputs

Scrape all cloud reviews for Tempo:

{
"addonKey": "is.origo.jira.tempo-plugin",
"maxItems": 100,
"hosting": "cloud",
"sortBy": "recent"
}

Get only 5-star reviews:

{
"addonKey": "com.onresolve.jira.groovy.groovyrunner",
"minRating": 5,
"maxItems": 50
}

Most helpful reviews first:

{
"addonKey": "com.innovalog.jmwe.jira-misc-workflow-extensions",
"sortBy": "helpful",
"maxItems": 200
}

How to find an addon key

  1. Go to marketplace.atlassian.com and search for the app
  2. Open the app listing page
  3. The addon key is visible in the URL or by using the companion Atlassian Marketplace Scraper actor to search and retrieve addonKey values

Popular examples:

  • Tempo Timesheets: is.origo.jira.tempo-plugin
  • ScriptRunner: com.onresolve.jira.groovy.groovyrunner
  • Jira Misc Workflow Extensions: com.innovalog.jmwe.jira-misc-workflow-extensions

Output

Each review record contains the following fields (only populated fields are included):

FieldTypeDescription
reviewIdstringUnique review identifier
addonKeystringAddon key that was scraped
addonNamestringDisplay name of the addon
addonUrlstringURL to the addon page on Marketplace
reviewUrlstringDirect URL to the review page
reviewerNamestringName of the reviewer
reviewerAvatarstringURL to reviewer's avatar image
ratingintegerStar rating given (1–5)
reviewTextstringFull review text
reviewDatestringISO-8601 date of the review
hostingstringHosting type of the reviewer's instance (cloud, server, datacenter)
helpfulCountintegerNumber of users who marked this review helpful
totalVotesintegerTotal votes (helpful + not helpful)
scrapedAtstringISO-8601 timestamp of when the record was scraped

Example output record

{
"reviewId": "62316c1550cceb00707a02f4",
"addonKey": "is.origo.jira.tempo-plugin",
"addonName": "Timesheets by Tempo - Jira Time Tracking",
"addonUrl": "https://marketplace.atlassian.com/apps/6572/timesheets-by-tempo-jira-time-tracking?tab=overview",
"reviewUrl": "https://marketplace.atlassian.com/apps/6572/timesheets-by-tempo-jira-time-tracking?reviewId=62316c1550cceb00707a02f4",
"reviewerName": "Vinoth K G",
"reviewerAvatar": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/initials/VG-3.png",
"rating": 3,
"reviewText": "Good tool and we have been using it for quite sometime. Support team is responsive.",
"reviewDate": "2026-05-07T09:06:00.365228+00:00",
"hosting": "cloud",
"helpfulCount": 3,
"totalVotes": 5,
"scrapedAt": "2026-05-20T12:00:00+00:00"
}

FAQ

Does this require an API key or login? No. Atlassian Marketplace reviews are publicly accessible. This actor works on a free Apify plan with zero credentials.

How do I get the addon key? Use the companion Atlassian Marketplace Scraper actor to search by keyword and retrieve addonKey from results. Or visit the app page on marketplace.atlassian.com — the key appears in the REST API URL pattern.

What does the hosting filter do? Each review records which hosting type the reviewer's Atlassian instance uses (cloud, server, or datacenter). This lets you see sentiment differences across deployment types.

How many reviews can I get? Most popular apps have hundreds to thousands of reviews. Set maxItems up to 500 to collect large datasets in one run.

Is there a rate limit? The actor uses polite 0.3s delays between pages and retries on rate-limit responses. It should not be blocked under normal usage.

Can I get reviews for multiple addons in one run? This actor is designed for one addon per run. To scrape reviews for many addons, run it in parallel using Apify's batch run feature.

Data source

Data is sourced from the official Atlassian Marketplace REST API (https://marketplace.atlassian.com/rest/2). This is a publicly accessible API requiring no authentication.