# Xiaohongshu Product Review Tracker — daily, sentiment

**Use case:** 

Daily Xiaohongshu (RedNote) product reviews with Chinese sentiment — each run returns only new notes since the last, so you pay for fresh signal, not re-pulls.

## Input

```json
{
  "mode": "search",
  "searchQuery": "skincare",
  "userUrl": "https://www.xiaohongshu.com/user/profile/5d7439b40000000001009f54",
  "postUrls": [
    "https://www.xiaohongshu.com/explore/643fa30c000000001303f836"
  ],
  "maxResults": 200,
  "sortBy": "time_descending",
  "filterByType": "note",
  "filterByMinLikes": 0,
  "includeComments": false,
  "maxComments": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "concurrency": 4,
  "blockResources": true,
  "liteMode": false,
  "sentimentAnalysis": true,
  "deltaMode": true,
  "deltaStateKey": "product-reviews",
  "networkCapture": true
}
```

## Output

```json
{
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "postId": {
    "label": "Post id"
  },
  "userId": {
    "label": "User id"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "shares": {
    "label": "Shares",
    "format": "number"
  },
  "saves": {
    "label": "Saves",
    "format": "number"
  },
  "nickname": {
    "label": "Author",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [RedNote Xiaohongshu Scraper All-in-One](https://apify.com/zhorex/rednote-xiaohongshu-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zhorex/rednote-xiaohongshu-scraper) to learn more, explore other use cases, and run it yourself.