Tencent App Store Review Scraper avatar

Tencent App Store Review Scraper

Pricing

$0.05 / 1,000 price per reviews

Go to Apify Store
Tencent App Store Review Scraper

Tencent App Store Review Scraper

The Tencent Application宝 Review Scraper gives app reviews with pagination. It supports filtering by date and rating, optional translation to English (or other languages).

Pricing

$0.05 / 1,000 price per reviews

Rating

0.0

(0)

Developer

reviewbot

reviewbot

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

19 days ago

Last modified

Share

Tencent Application宝 Review Scraper

Extract reviews from apps on Tencent Application宝 (sj.qq.com) using the official API.

What This Actor Does

The Tencent Application宝 Review Scraper uses the official yybadaccess.3g.qq.com API to fetch app reviews with pagination. It supports filtering by date and rating, optional translation to English (or other languages)

Perfect for:

  • Android app developers monitoring feedback on Application宝
  • Product teams analyzing user reviews for apps distributed in China
  • Business intelligence and sentiment analysis

Why Use This Actor:

  • Official API: Direct access to Tencent's review API; no browser scraping
  • Auto-detection: Only package name required - AppID is automatically detected
  • Pagination: Fetches up to 100 reviews per request (configurable page size)
  • Auto-translation: All reviews are automatically translated to English (or your chosen language)
  • Same payload as other actors: Same output shape, filters, charge logic, and webhooks as Microsoft/Apple actors

Quick Start

Using Apify Console

  1. Open the actor in Apify Console
  2. Set pkgName (Android package name) - this is the only required field!
  3. Optionally set limit, translateTo (e.g. en), webhookUrl
  4. Run

Simplified Usage Example

{
"pkgName": "com.ss.android.ugc.aweme",
"limit": 100,
"translateTo": "en"
}

The actor will automatically detect the AppID and translate reviews to English!

Input Parameters

ParameterTypeRequiredDescription
pkgNamestringAndroid package name (e.g. com.ss.android.ugc.aweme)
limitnumberMax reviews to fetch (default: 100)
pageSizenumberReviews per API page, 20–100 (default: 50)
translateTostringTarget language for translation (default: en). Reviews are always translated from Chinese.
startDatestringFilter reviews after this date (YYYY-MM-DD)
endDatestringFilter reviews before this date (YYYY-MM-DD)
ratingsarrayStar ratings to include, e.g. [4, 5]
webhookUrlstringWebhook URL for results
webhookApiKeystringAPI key for webhook (optional)

Finding Package Name

The easiest way to find the package name:

  1. Go to the app's Application宝 page: https://sj.qq.com/appdetail/com.ss.android.ugc.aweme
  2. The package name is in the URL after /appdetail/: com.ss.android.ugc.aweme

That's it! You don't need to find the AppID anymore - it will be automatically detected.

Output Format

Same structure as other ReviewBot store actors:

{
"source": "apify",
"store": "tencent",
"appId": "42350811",
"runId": "...",
"actorId": "...",
"appName": "App com.ss.android.ugc.aweme",
"developer": "Application宝",
"appUrl": "https://sj.qq.com/appdetail/com.ss.android.ugc.aweme/review",
"reviews": [
{
"reviewId": "tencent-api-42350811-...",
"text": "Review body in Chinese",
"translatedText": "Review body in English (if translateTo set)",
"rating": 5,
"author": "用户",
"authorTranslated": "User",
"reviewedAt": "2024-01-15T10:30:00.000Z",
"scrapedAt": "...",
"store": "tencent",
"source": "tencent-api"
}
],
"metadata": { "summary": {...}, "scrapingStats": {...} }
}

Pricing & Cost Control

Same as other ReviewBot store actors:

  • First 10 reviews are free per run
  • Paid reviews after that (configurable via env)
  • Charges based on number of reviews returned

Error Handling

On failure, if webhookUrl is set, the actor sends a failure payload (e.g. VALIDATION_ERROR, APPID_DETECTION_ERROR, API_ERROR, NETWORK_ERROR) to the webhook before exiting.

Support