# Tokopedia Game Product Data Extractor

**Use case:** 

Extract up to 500 game products from Tokopedia search results. Get structured data on prices, ratings, and reviews for market analysis.

## Input

```json
{
  "startUrl": "https://www.tokopedia.com/search?st=&q=game&srp_component_id=02.01.00.00&srp_page_id=&srp_page_title=&navsource=",
  "keyword": "game",
  "results_wanted": 500,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "page": {
    "label": "Page",
    "format": "integer"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Product Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "sold_count": {
    "label": "Sold Count",
    "format": "string"
  },
  "shop_name": {
    "label": "Shop Name",
    "format": "string"
  },
  "shop_city": {
    "label": "Shop City",
    "format": "string"
  },
  "product_url": {
    "label": "Product URL",
    "format": "string"
  },
  "image_url": {
    "label": "Image URL",
    "format": "string"
  },
  "is_ad": {
    "label": "Is Ad",
    "format": "boolean"
  },
  "fetched_at": {
    "label": "Fetched At",
    "format": "string"
  }
}
```

## About this Actor

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