Atlassian Marketplace Scraper avatar

Atlassian Marketplace Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Atlassian Marketplace Scraper

Atlassian Marketplace Scraper

Scrape the Atlassian Marketplace, search apps/addons by keyword, browse by category, or fetch specific addons by key. Extracts name, vendor, rating, install count, pricing model, categories, hosting, and more.

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 app listings from the Atlassian Marketplace — the official app store for Jira, Confluence, Trello, and other Atlassian products. No API key or login required.

What this actor does

This actor lets you search, browse, and extract detailed information about apps published on the Atlassian Marketplace. It supports three modes:

  • Search — find apps matching a keyword (e.g., "project management", "time tracking")
  • Browse by category — list all apps in a specific category (Project management, Workflow, Integrations, etc.)
  • Fetch by addon key — retrieve full details for one or more specific apps by their unique key

Why use this actor?

  • Market research — discover the most popular tools Atlassian teams use
  • Competitive analysis — compare ratings, install counts, and reviews across apps
  • Lead generation — identify vendors and partners in the Atlassian ecosystem
  • Data enrichment — augment CRM or analytics pipelines with app metadata

Input

FieldTypeDescriptionDefault
modeselectsearch, byCategory, or byAddonKeysearch
searchQuerystringKeyword to search (mode=search)project management
categoryselectCategory ID to browse (mode=byCategory)
addonKeysarrayAddon key strings to fetch (mode=byAddonKey)
hostingselectFilter by hosting: cloud, server, datacentercloud
maxItemsintegerMaximum records to return (1–500)50
minRatingnumberOnly include apps with rating ≥ this value (0.0–5.0)

Example inputs

Search for project management tools:

{
"mode": "search",
"searchQuery": "project management",
"hosting": "cloud",
"maxItems": 50
}

Browse Workflow category:

{
"mode": "byCategory",
"category": 11,
"hosting": "cloud",
"maxItems": 100
}

Fetch specific addons:

{
"mode": "byAddonKey",
"addonKeys": ["is.origo.jira.tempo-plugin", "com.onresolve.jira.groovy.groovyrunner"],
"hosting": "cloud"
}

Output

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

FieldTypeDescription
addonKeystringUnique addon key (e.g., is.origo.jira.tempo-plugin)
addonIdstringNumeric addon ID
namestringApp display name
tagLinestringShort tagline
summarystringLonger description
statusstringListing status (public, private)
addonUrlstringDirect URL to the app on Atlassian Marketplace
logoUrlstringApp logo image URL
vendorNamestringName of the vendor/developer
vendorUrlstringVendor profile URL on Marketplace
categoriesarrayCategory names (e.g., ["Time tracking", "Reports"])
ratingnumberAverage star rating (0.0–5.0)
reviewCountintegerTotal number of reviews
installCountintegerTotal active installs
downloadCountintegerTotal cumulative downloads
pricingModelstringFree or Paid
versionstringLatest version name (byAddonKey mode)
releaseDatestringLatest release date (byAddonKey mode)
hostingarrayHosting types (cloud, server, datacenter)
lastModifiedstringISO-8601 last-modified date
communityEnabledbooleanWhether community features are enabled
storesPersonalDatabooleanWhether the app stores personal data
keywordsarrayApp keyword tags
scrapedAtstringISO-8601 timestamp of when the record was scraped

Example output record

{
"addonKey": "is.origo.jira.tempo-plugin",
"addonId": "6572",
"name": "Timesheets by Tempo - Jira Time Tracking",
"tagLine": "Award-winning time tracking for Jira",
"summary": "The most trusted time tracking app for Jira and Jira Service Management teams.",
"status": "public",
"addonUrl": "https://marketplace.atlassian.com/apps/6572/timesheets-by-tempo-jira-time-tracking?tab=overview",
"logoUrl": "https://marketplace.atlassian.com/product-listing/files/abc123",
"vendorName": "Tempo",
"vendorUrl": "https://marketplace.atlassian.com/vendors/1001/tempo",
"categories": ["Time tracking", "Project management"],
"rating": 4.2,
"reviewCount": 887,
"installCount": 29029,
"downloadCount": 620364,
"pricingModel": "Paid",
"lastModified": "2026-05-10T07:41:01.024+00:00",
"communityEnabled": true,
"storesPersonalData": true,
"scrapedAt": "2026-05-20T12:00:00+00:00"
}

Available categories

IDCategory
1Admin tools
2Charts & diagramming
3Email
4Integrations
5IT & helpdesk
6Mobile
7Project management
8Source code
9Testing & QA
10Themes & styles
11Workflow
12Time tracking
13Custom fields
14Dashboard gadgets
15Language packs
20Reports
34Messaging
54Continuous integration
55Monitoring
56CRM
57Deployments
58Code quality
60Security

FAQ

Does this require an API key or Atlassian account? No. The Atlassian Marketplace REST API is fully public. This actor works on a free Apify plan with no credentials.

What does the hosting filter do? It filters apps by deployment type: cloud (Atlassian Cloud), server (on-premise), or datacenter (Atlassian Data Center).

Why are some fields like version and hosting only present in byAddonKey mode? Version and hosting details require an extra API call per addon. In search/browse modes these are omitted for performance. Use byAddonKey mode when you need these fields.

What does pricingModel mean?

  • Free — the app is free to install
  • Paid — the app has a paid license (per-user or per-instance pricing via Atlassian billing)
  • Some apps may have freemium tiers; refer to the addonUrl for full pricing details.

How do I find an addon key? Visit the app page on marketplace.atlassian.com. The key appears in the REST API URL (e.g., is.origo.jira.tempo-plugin) and can also be extracted from the addonKey field of any search result.

Can I get reviews with this actor? This actor focuses on addon metadata. For detailed reviews, use the companion Atlassian Marketplace Reviews Scraper actor.

Is there rate limiting? The actor includes polite delays between API pages (0.3s) and automatic retries on rate-limit responses. It should not trigger API limits under normal use.

Data source

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