Install
openclaw skills install @tonywangcn/app-review-miningMines App Store and Google Play data via the Crawlora API — app details, reviews, ratings, store rankings, and similar apps — as clean JSON. Use when the user wants mobile-app reviews, ratings, store charts/rankings, or competitive ASO (app store optimization) research without scraping store pages.
openclaw skills install @tonywangcn/app-review-miningPull App Store (iOS) and Google Play (Android) app details, reviews, ratings, rankings, and similar-app lists as normalized JSON from the Crawlora API.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.Choose the store (both have parallel endpoints), then the job:
/appstore/search?term=... or /googleplay/search?q=...
to resolve the app id / bundle id./appstore/app, /googleplay/app for metadata, rating summary,
description, and developer./appstore/reviews, /googleplay/reviews (paginate) for the
review text, score, and date to mine sentiment and themes./appstore/list, /googleplay/list for store charts by category./appstore/similar, /googleplay/similar for similar apps.Full endpoint list, methods, and params: reference/endpoints.md.
# Find an app, then pull its reviews (GET, key=value params):
scripts/crawlora.sh /appstore/search term="notion" | jq '.'
scripts/crawlora.sh /appstore/reviews id=1232780281 country=us | jq '.reviews[].text'
scripts/crawlora.sh /googleplay/search q="notion" | jq '.'
scripts/crawlora.sh /googleplay/reviews appId="notion.id" | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/appstore/search?term=notion" | jq '.'
See reference/endpoints.md for every App Store and
Google Play endpoint this skill uses (method, path, params, description).
/appstore/reviews
(paginate) → classify each review's sentiment and summarize top complaints/praise./appstore/app and /googleplay/app for the same
product to compare ratings and review volume across platforms./googleplay/list for a category to track where an
app sits in the charts over time.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.country/page to widen coverage.