Atlassian Marketplace Category Monitor avatar

Atlassian Marketplace Category Monitor

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Atlassian Marketplace Category Monitor

Atlassian Marketplace Category Monitor

Monitor Atlassian Marketplace app rankings by category. Lists apps sorted by install count with rank position, ideal for tracking which apps lead each category over time.

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

Monitor which apps dominate every category on the Atlassian Marketplace. This scraper lists all apps within a chosen category ranked by install count (the default API sort order) — ideal for competitive analysis, category benchmarking, and tracking rank changes over time.

What it does

  • Browses any of the 37 Atlassian Marketplace categories
  • Returns apps sorted by install count with a rankInCategory position field
  • Filters by hosting type (Cloud, Server, Data Center, or All)
  • Optionally filters by minimum average rating
  • Extracts name, vendor, tagline, rating, review count, install count, pricing model, categories, addon URL, and logo

Input

FieldTypeRequiredDefaultDescription
categorySelectYesProject managementAtlassian Marketplace category to browse
hostingSelectNocloudHosting filter: cloud, server, datacenter, or all
maxItemsIntegerNo50Maximum number of addons to return (1–500)
minRatingFloatNoOnly include addons rated at or above this value (0.0–5.0)

Available categories

Admin tools, Blueprints, Build management, Charts & diagramming, Code quality, Code review, Continuous integration, CRM, Custom fields, Dashboard gadgets, Dependency management, Deployments, Design tools, Document management, Documentation, Email, IDE, Integrations, IT & helpdesk, Language packs, Macros, Messaging, Mobile, Monitoring, Project management, Reports, Repository connectors, Repository hooks, Security, Shared workflows, Source code, Tasks, Testing & QA, Themes & styles, Time tracking, Utilities, Workflow

Example input

{
"category": "Project management",
"hosting": "cloud",
"maxItems": 50
}

Output

Each record represents one Atlassian Marketplace addon. Example record:

{
"rankInCategory": 1,
"addonKey": "com.pyxis.greenhopper.jira",
"name": "Jira Software",
"tagLine": "Plan, track, and release great software",
"vendorName": "Atlassian",
"categories": ["Project management", "Agile"],
"rating": 3.85,
"reviewCount": 1200,
"installCount": 85000,
"pricingModel": "Paid",
"hosting": ["cloud"],
"addonUrl": "https://marketplace.atlassian.com/apps/1211580/jira-software",
"logoUrl": "https://marketplace.atlassian.com/product-listing/files/abc123.png",
"status": "public",
"lastUpdated": "2026-05-14T00:00:00.000+00:00",
"scrapedAt": "2026-05-20T12:00:00+00:00"
}

Output fields

FieldTypeDescription
rankInCategoryInteger1-based rank by install count within the category
addonKeyStringUnique addon identifier (e.g., com.vendor.addon)
nameStringDisplay name of the addon
tagLineStringShort marketing tagline
summaryStringLonger description
vendorNameStringName of the vendor/publisher
categoriesArrayAll categories this addon belongs to
ratingFloatAverage star rating (1.0–5.0)
reviewCountIntegerNumber of reviews
installCountIntegerTotal install count
pricingModelStringFree or Paid
hostingArrayHosting types: cloud, server, datacenter
addonUrlStringURL to the addon's Marketplace page
logoUrlStringURL to the addon's logo image
statusStringAddon status (e.g., public)
lastUpdatedStringISO-8601 timestamp of last modification
scrapedAtStringISO-8601 timestamp when data was scraped

Use cases

  • Competitive analysis: See which apps rank at the top of any category
  • Market research: Track install counts and ratings across all Project Management or Workflow tools
  • Trend monitoring: Run on a schedule to detect rank changes over time
  • Vendor benchmarking: Compare your app's position against competitors in the same category

FAQ

How often does the ranking change? Rankings reflect the live Atlassian Marketplace API which updates frequently. Run this scraper on a schedule to capture ranking changes over time.

Why does pricingModel sometimes not appear? Pricing information requires an additional API call per addon to fetch the version details. It is populated for all addons; if missing, the addon has no published versions yet.

What does rankInCategory represent? It is the 1-based position of the addon in the category as returned by the Atlassian Marketplace API, which sorts by total install count (most-installed first).

Can I get data for multiple categories in one run? Run separate instances for each category you want to monitor.

What is the difference between server and datacenter hosting? server refers to self-hosted Jira/Confluence Server instances. datacenter refers to the Atlassian Data Center tier. cloud is the Atlassian-hosted SaaS offering.

Are free-plan-only results possible? Yes — set minRating: 0.0 and leave pricingModel unset. Use the hosting: "cloud" default for the most accurate free-tier results.

Data source

Data is fetched from the public Atlassian Marketplace REST API v2. No authentication, cookies, or proxy is required.