# itch.io Top Rated Games Scraper

**Use case:** 

Extract top rated indie games from itch.io with titles, ratings, and prices. Structured game data for discovery and market research.

## Input

```json
{
  "maxItems": 3,
  "sortBy": "top-rated"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating Count",
    "format": "number"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "genre": {
    "label": "Genre",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [itch.io Game Scraper](https://apify.com/parseforge/itch-io-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/itch-io-scraper) to learn more, explore other use cases, and run it yourself.