📕 RedNote (Xiaohongshu) Rednote Scraper avatar

📕 RedNote (Xiaohongshu) Rednote Scraper

Pricing

$4.00 / 1,000 results

Go to Apify Store
📕 RedNote (Xiaohongshu) Rednote Scraper

📕 RedNote (Xiaohongshu) Rednote Scraper

Extract RedNote (Xiaohongshu) rednote data — likes, collects, author, and more. Scrape by keyword, URL or ID. Export to JSON, CSV & Excel, use the API, schedule runs and integrate. No code required.

Pricing

$4.00 / 1,000 results

Rating

0.0

(0)

Developer

Jackie Chen

Jackie Chen

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 hours ago

Last modified

Share

Xiaohongshu (RedNote) Scraper

xiaohongshu-rednote-scraper

Scrape Xiaohongshu / RedNote (小红书) notes by keyword search or user profile. Returns clean, structured data for each note: title, description, like / collect / comment / share counts, cover image, image URLs, video duration, author info, and the note URL. Optionally enriches each note with its top-level comments.

Unofficial. This Actor is not affiliated with, authorized, or endorsed by Xiaohongshu (Xingin / 行吟信息科技) or ByteDance. It is an independent tool that retrieves publicly available data via a third-party API. Use it in compliance with Xiaohongshu's terms and all applicable laws; you are responsible for how you use the retrieved data.

What it does

  • Keyword search — give one or more keywords; the Actor paginates RedNote search results for each. Sort by comprehensive / latest / most popular, and filter by video-only or image-only notes.
  • User profile — give one or more Xiaohongshu user IDs (the 24-char hex id) to scrape the notes they have posted.
  • Comments (optional) — fetch top-level comments for every scraped note.

Input

FieldTypeDefaultDescription
searchKeywordsstring[]["护肤"]Keywords to search. Each is paginated independently. Chinese keywords return the most results.
userIdsstring[][]Xiaohongshu user IDs whose posted notes to scrape.
maxItemsinteger50Max total notes across all keywords and users.
sortTypeenumgeneralgeneral / time_descending / popularity_descending.
noteTypeenum不限不限 (all) / 视频笔记 (video) / 普通笔记 (image).
includeCommentsbooleanfalseAlso fetch top-level comments per note.
maxCommentsPerNoteinteger10Cap on comments per note when enabled.

Example input

{
"searchKeywords": ["护肤", "city walk"],
"maxItems": 100,
"sortType": "popularity_descending",
"noteType": "视频笔记",
"includeComments": true,
"maxCommentsPerNote": 5
}

Output

One dataset item per note:

{
"noteId": "69d8ab670000000022003dbe",
"url": "https://www.xiaohongshu.com/explore/69d8ab67...?xsec_token=...",
"type": "video",
"title": "Skin Routine🧴水光肌的日常晚间护理",
"description": "#护肤 #晚间护肤 ...",
"likedCount": 5863,
"collectedCount": 1030,
"commentsCount": 161,
"sharedCount": 178,
"videoDuration": "1:09",
"coverUrl": "https://...",
"imageUrls": ["https://..."],
"author": { "userId": "5a34cd18...", "redId": "...", "nickname": "..." },
"xsecToken": "...",
"timestamp": 1775807335,
"source": "search:护肤",
"comments": []
}

Notes

  • Data is sourced live; RedNote occasionally rate-limits, so the Actor retries transient blocks with exponential backoff.
  • Note IDs are de-duplicated within a run.