# Trending CS2 Workshop map scraper

**Use case:** 

Scrape trending Counter-Strike 2 Workshop maps, creators, ratings, subscribers, tags, images, and update dates.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://steamcommunity.com/workshop/browse/?appid=730&browsesort=trend&section=readytouseitems"
    }
  ],
  "appIds": [
    "730"
  ],
  "query": "map",
  "browseSort": "trend",
  "section": "readytouseitems",
  "requiredTags": [],
  "maxItems": 50,
  "includeComments": false,
  "maxCommentsPerItem": 5,
  "includeDependencies": false,
  "maxConcurrency": 5
}
```

## Output

```json
{
  "itemId": {
    "label": "Item ID"
  },
  "title": {
    "label": "Title"
  },
  "appId": {
    "label": "App ID"
  },
  "game": {
    "label": "Game"
  },
  "authorName": {
    "label": "Author"
  },
  "ratingCount": {
    "label": "Ratings"
  },
  "uniqueVisitors": {
    "label": "Unique visitors"
  },
  "currentSubscribers": {
    "label": "Subscribers"
  },
  "currentFavorites": {
    "label": "Favorites"
  },
  "postedAt": {
    "label": "Posted"
  },
  "updatedAt": {
    "label": "Updated"
  },
  "tags": {
    "label": "Tags"
  },
  "url": {
    "label": "URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Steam Workshop Scraper](https://apify.com/automation-lab/steam-workshop-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/steam-workshop-scraper) to learn more, explore other use cases, and run it yourself.