# Atlassian Marketplace Rating Drift

**Use case:** 

Monitor Atlassian Marketplace for rating drift using reusable marketplace snapshots.

## Input

```json
{
  "currentItems": [
    {
      "id": "a",
      "name": "Alpha App",
      "publisher": "Vendor A",
      "category": "Productivity",
      "price": 9,
      "rating": 4.6,
      "reviews": 120,
      "users": 5000,
      "rank": 4
    },
    {
      "id": "b",
      "name": "Beta Tool",
      "publisher": "Vendor B",
      "category": "Analytics",
      "price": 15,
      "rating": 4.3,
      "reviews": 75,
      "users": 2300,
      "rank": 12
    }
  ],
  "previousItems": [
    {
      "id": "a",
      "name": "Alpha App",
      "publisher": "Vendor A",
      "category": "Productivity",
      "price": 8,
      "rating": 4.5,
      "reviews": 100,
      "users": 4200,
      "rank": 7
    }
  ],
  "maxItems": 20000,
  "mcpToolName": "",
  "mcpToolArguments": {},
  "mcpFailOnError": false,
  "mcpActionPreset": "AUTO_SAFE_WRITE"
}
```

## Output

```json
{
  "marketplace": {
    "label": "Marketplace"
  },
  "currentListings": {
    "label": "Current listings"
  },
  "newListingCount": {
    "label": "New listing count"
  },
  "removedListingCount": {
    "label": "Removed listing count"
  },
  "priceChangeCount": {
    "label": "Price change count"
  },
  "averageRating": {
    "label": "Average rating"
  },
  "adoptionGrowthPct": {
    "label": "Adoption growth pct"
  },
  "reviewGrowthPct": {
    "label": "Review growth pct"
  },
  "marketMomentumScore": {
    "label": "Market momentum score"
  },
  "agentAction": {
    "label": "Agent action"
  }
}
```

## About this Actor

This example demonstrates how to use [Atlassian Marketplace Intelligence](https://apify.com/quanmatrix/atlassian-marketplace-intelligence.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/quanmatrix/atlassian-marketplace-intelligence.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/quanmatrix/atlassian-marketplace-intelligence.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
