Endpoint Playground
Test Crawlora's Steam Review Histogram API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/steam/reviews/histogram?appid=570" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| appid | string | Yes | 570 | Numeric Steam app id |
| language | string | No | Steam language name or 'all' |
{
"code": 200,
"msg": "OK",
"data": {
"appid": "570",
"count_all_reviews": 1900000,
"rollup_type": "week",
"start_date": 1600000000,
"end_date": 1620000000,
"rollups": [
{
"date": 1600300800,
"recommendations_up": 5400,
"recommendations_down": 700
}
],
"recent": [
{
"date": 1619740800,
"recommendations_up": 320,
"recommendations_down": 40
}
],
"source_url": "https://store.steampowered.com/appreviewhistogram/570?l=english"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the positive/negative recommendation counts over time (the store review graph): weekly/monthly rollups plus recent daily buckets. Credential-free public Steam storefront JSON.
{
"code": 200,
"msg": "OK",
"data": {
"appid": "570",
"count_all_reviews": 1900000,
"rollup_type": "week",
"start_date": 1600000000,
"end_date": 1620000000,
"rollups": [
{
"date": 1600300800,
"recommendations_up": 5400,
"recommendations_down": 700
}
],
"recent": [
{
"date": 1619740800,
"recommendations_up": 320,
"recommendations_down": 40
}
],
"source_url": "https://store.steampowered.com/appreviewhistogram/570?l=english"
}
}curl "https://api.crawlora.net/api/v1/steam/reviews/histogram?appid=<appid>" \
-H "x-api-key: $CRAWLORA_API_KEY"