# VS Code Extension Stats – Installs, Ratings & Data

**Use case:** 

Scrape VS Code Marketplace extension data — install counts, ratings, version, publisher and pricing — for any extension. Export to JSON/CSV, no start fee.

## Input

```json
{
  "mode": "details",
  "extensionIds": [
    "ms-python.python",
    "esbenp.prettier-vscode",
    "github.copilot"
  ],
  "sortBy": "relevance",
  "maxSearchResults": 25,
  "maxReviewsPerExtension": 50
}
```

## Output

```json
{
  "extensionId": {
    "label": "Extension ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "publisherDisplayName": {
    "label": "Publisher name",
    "format": "text"
  },
  "installs": {
    "label": "Installs",
    "format": "number"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "# Ratings",
    "format": "number"
  },
  "trendingMonthly": {
    "label": "Trending (30d)",
    "format": "number"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "lastUpdated": {
    "label": "Updated",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "marketplaceUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [VS Code Marketplace Scraper — Extensions, Stats & Reviews](https://apify.com/freshactors/vscode-marketplace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/freshactors/vscode-marketplace-scraper) to learn more, explore other use cases, and run it yourself.