Researches products, prices, sellers, and reviews across 28 major online marketplaces and big-box/specialty retailers (Amazon, eBay, Shopify stores, Shop.app, Target, Costco, Walmart, Nike, Zara, Adidas, Best Buy, Home Depot, Sephora, SHEIN, IKEA, Chewy, and more) using the Crawlora API, returning clean JSON. Use when the user asks to find a product, compare prices or sellers, track listings, or pull marketplace/retailer reviews — instead of scraping store pages.
Design & media
gaming-research
Try itResearches 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.
What it does
Researches 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.
The skill document
Gaming research
Look 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.
When to use this skill
- "What does cost / how is it rated?"
- "How many people are playing right now?" (Steam player counts)
- "What's trending / most played / top sellers right now?"
- "What's on sale?" (Steam or PlayStation deals)
- "Find games in " or "similar to ."
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
- Steam —
/steam/search(term) to find anappid, then/steam/appfor the store page,/steam/reviews(+/reviews/histogram) for review data,/steam/playersfor the current concurrent player count,/steam/newsfor updates,/steam/achievementsfor the achievement list./steam/charts/most-played,/steam/charts/concurrent,/steam/charts/top-releases,/steam/top-sellers, and/steam/featuredcover trending/what's-hot;/steam/tagsand/steam/category/{slug}filter by genre/tag. - PlayStation —
/playstation/search(term) to find a productid, then/playstation/productfor detail,/playstation/conceptfor a game's overall franchise/concept page,/playstation/categoryto browse a category,/playstation/dealsfor current discounts,/playstation/latestfor new releases.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# 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 '.'
Endpoint reference
See reference/endpoints.md for every Steam and
PlayStation endpoint this skill uses.
Examples
- Buy-decision brief:
/steam/app(price, tags) +/steam/reviews/histogram(rating distribution) +/steam/players(is it still active) in one pass. - What's hot right now:
/steam/charts/most-played+/steam/top-sellerscross-checked against/playstation/latestfor console releases. - Sale-hunting:
/steam/featured(specials) +/playstation/dealsfor the same title across both storefronts.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo. Key at https://crawlora.net. - Public data only — public store/review pages.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Steam pricing/availability is region-specific — pass
cc(country code) andl(language) where supported to match a specific storefront. - Resolve names to platform ids via
.../searchbefore calling a detail endpoint.
Related skills
Reusable Steam gaming companion for profiles, library insights, recommendations, wishlist tracking, achievement context, game lookups, reviews, setup verification, and preference memory.
Researches movies and TV shows — metadata, cast/crew, ratings, reviews, streaming availability, and box-office performance — via the Crawlora API across IMDb, TMDB, JustWatch, Letterboxd, Rotten Tomatoes, Metacritic, and Box Office Mojo, returning clean JSON. Use when the user asks about a title's cast, ratings/scores, where to stream it, critic or user reviews, or its box-office numbers.
Researches secondhand, resale, and handmade marketplaces via the Crawlora API — Poshmark, Etsy, Vinted, StockX, Mercari, Depop, and Whatnot — returning clean JSON. Use when the user wants to find or compare listings, check a seller/shop, look up sneaker/streetwear resale prices, or research handmade/vintage goods.
Automated weekly workflow that scrapes GOG store discounts, analyzes the full discounted-game dataset with Gemini, generates a markdown insights report, and...
Mines 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.