Install
openclaw skills install @tonywangcn/gaming-researchResearches video games via the Crawlora API — Steam (store pages, pricing, reviews, player counts, charts, tags, achievements) and PlayStation Store (products, categories, deals) — returning clean JSON. Use when the user wants a game's price/reviews/player count, what's trending or on sale, or a store listing's details.
openclaw skills install @tonywangcn/gaming-researchLook up game store listings, pricing, reviews, and player counts across Steam and the PlayStation Store as normalized JSON from the Crawlora API — no scraping storefront pages.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./steam/search (term) to find an appid, then
/steam/app for the store page, /steam/reviews (+ /reviews/histogram)
for review data, /steam/players for the current concurrent player
count, /steam/news for updates, /steam/achievements for the
achievement list. /steam/charts/most-played, /steam/charts/concurrent,
/steam/charts/top-releases, /steam/top-sellers, and /steam/featured
cover trending/what's-hot; /steam/tags and /steam/category/{slug}
filter by genre/tag./playstation/search (term) to find a product id,
then /playstation/product for detail, /playstation/concept for a
game's overall franchise/concept page, /playstation/category to browse
a category, /playstation/deals for current discounts,
/playstation/latest for new releases.Full endpoint list, methods, and params: reference/endpoints.md.
# Steam:
scripts/crawlora.sh /steam/search term="Hades" | jq '.'
scripts/crawlora.sh /steam/app appid=1145360 | jq '.'
scripts/crawlora.sh /steam/players appid=1145360 | jq '.'
# PlayStation:
scripts/crawlora.sh /playstation/search term="Spider-Man" | jq '.'
scripts/crawlora.sh /playstation/deals | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/steam/charts/most-played" | jq '.'
See reference/endpoints.md for every Steam and
PlayStation endpoint this skill uses.
/steam/app (price, tags) + /steam/reviews/histogram
(rating distribution) + /steam/players (is it still active) in one pass./steam/charts/most-played + /steam/top-sellers
cross-checked against /playstation/latest for console releases./steam/featured (specials) + /playstation/deals for
the same title across both storefronts.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.cc (country
code) and l (language) where supported to match a specific storefront..../search before calling a detail
endpoint.