# Cellsius Tokopedia seller catalog extraction example

**Use case:** 

Collect products, prices, seller rating totals and availability signals from the public Cellsius Tokopedia merchant catalog.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.tokopedia.com/cellsius"
    }
  ],
  "maxItems": 20,
  "minPrice": 0,
  "minRating": 0,
  "monitorChanges": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "name": {
    "label": "Product",
    "format": "string"
  },
  "price": {
    "label": "Price (IDR)",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "soldText": {
    "label": "Sales signal",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "seller": {
    "label": "Seller",
    "format": "object"
  },
  "changeStatus": {
    "label": "Change",
    "format": "string"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Tokopedia Products, Sellers & Reviews Monitor](https://apify.com/automation-lab/tokopedia-products-sellers-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/tokopedia-products-sellers-monitor) to learn more, explore other use cases, and run it yourself.