Endpoint Playground
Test Crawlora's Steam Most-Played Chart 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/charts/most-played" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| enrich | boolean | No | Attach game name and review summary to each rank | |
| cc | string | No | Store country code (ISO) for name enrichment | |
| l | string | No | Steam store language name for name enrichment |
{
"code": 200,
"msg": "OK",
"data": {
"chart": "most_played",
"updated_unix": 1778457600,
"enriched": true,
"count": 2,
"ranks": [
{
"rank": 1,
"appid": 730,
"name": "Counter-Strike 2",
"review_summary": "Very Positive",
"last_week_rank": 1,
"peak_in_game": 1275982
},
{
"rank": 2,
"appid": 578080,
"name": "PUBG: BATTLEGROUNDS",
"last_week_rank": 2,
"peak_in_game": 732248
}
],
"source_url": "https://api.steampowered.com/ISteamChartsService/GetMostPlayedGames/v1/"
}
}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 Steam's weekly most-played chart: the top games ranked by peak concurrent players over the last week (rank, appid, previous-week rank, peak players). By default each row is enriched with the game name and review summary via a batch lookup; pass enrich=false for the raw ranked app ids only. Credential-free public Steam WebAPI JSON.
{
"code": 200,
"msg": "OK",
"data": {
"chart": "most_played",
"updated_unix": 1778457600,
"enriched": true,
"count": 2,
"ranks": [
{
"rank": 1,
"appid": 730,
"name": "Counter-Strike 2",
"review_summary": "Very Positive",
"last_week_rank": 1,
"peak_in_game": 1275982
},
{
"rank": 2,
"appid": 578080,
"name": "PUBG: BATTLEGROUNDS",
"last_week_rank": 2,
"peak_in_game": 732248
}
],
"source_url": "https://api.steampowered.com/ISteamChartsService/GetMostPlayedGames/v1/"
}
}curl "https://api.crawlora.net/api/v1/steam/charts/most-played" \
-H "x-api-key: $CRAWLORA_API_KEY"