Atlassian Marketplace Scraper
Pricing
from $3.00 / 1,000 results
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
Maintained by CommunityActor stats
7
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
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
| Field | Type | Description | Default |
|---|---|---|---|
mode | select | search, byCategory, or byAddonKey | search |
searchQuery | string | Keyword to search (mode=search) | project management |
category | select | Category ID to browse (mode=byCategory) | — |
addonKeys | array | Addon key strings to fetch (mode=byAddonKey) | — |
hosting | select | Filter by hosting: cloud, server, datacenter | cloud |
maxItems | integer | Maximum records to return (1–500) | 50 |
minRating | number | Only 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):
| Field | Type | Description |
|---|---|---|
addonKey | string | Unique addon key (e.g., is.origo.jira.tempo-plugin) |
addonId | string | Numeric addon ID |
name | string | App display name |
tagLine | string | Short tagline |
summary | string | Longer description |
status | string | Listing status (public, private) |
addonUrl | string | Direct URL to the app on Atlassian Marketplace |
logoUrl | string | App logo image URL |
vendorName | string | Name of the vendor/developer |
vendorUrl | string | Vendor profile URL on Marketplace |
categories | array | Category names (e.g., ["Time tracking", "Reports"]) |
rating | number | Average star rating (0.0–5.0) |
reviewCount | integer | Total number of reviews |
installCount | integer | Total active installs |
downloadCount | integer | Total cumulative downloads |
pricingModel | string | Free or Paid |
version | string | Latest version name (byAddonKey mode) |
releaseDate | string | Latest release date (byAddonKey mode) |
hosting | array | Hosting types (cloud, server, datacenter) |
lastModified | string | ISO-8601 last-modified date |
communityEnabled | boolean | Whether community features are enabled |
storesPersonalData | boolean | Whether the app stores personal data |
keywords | array | App keyword tags |
scrapedAt | string | ISO-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
| ID | Category |
|---|---|
| 1 | Admin tools |
| 2 | Charts & diagramming |
| 3 | |
| 4 | Integrations |
| 5 | IT & helpdesk |
| 6 | Mobile |
| 7 | Project management |
| 8 | Source code |
| 9 | Testing & QA |
| 10 | Themes & styles |
| 11 | Workflow |
| 12 | Time tracking |
| 13 | Custom fields |
| 14 | Dashboard gadgets |
| 15 | Language packs |
| 20 | Reports |
| 34 | Messaging |
| 54 | Continuous integration |
| 55 | Monitoring |
| 56 | CRM |
| 57 | Deployments |
| 58 | Code quality |
| 60 | Security |
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 installPaid— the app has a paid license (per-user or per-instance pricing via Atlassian billing)- Some apps may have freemium tiers; refer to the
addonUrlfor 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.