Install
openclaw skills install @crawlora-org/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 @crawlora-org/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.
CRAWLORA_API_KEY in the environment before running the helper.CRAWLORA_API_KEY from the environment and sends requests to 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 '.data'
scripts/crawlora.sh /googleplay/search term="notion" | jq '.'
scripts/crawlora.sh /googleplay/reviews app_id="notion.id" | jq '.'
Use scripts/crawlora.sh for all requests; it keeps the API key out of command-line arguments.
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.