Endpoint Playground
Test Crawlora's Steam Live Concurrent 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/concurrent" \
-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": "concurrent",
"updated_unix": 1783764154,
"enriched": true,
"count": 2,
"ranks": [
{
"rank": 1,
"appid": 730,
"name": "Counter-Strike 2",
"concurrent_in_game": 877122,
"peak_in_game": 1308574
},
{
"rank": 2,
"appid": 570,
"name": "Dota 2",
"concurrent_in_game": 575671,
"peak_in_game": 761940
}
],
"source_url": "https://api.steampowered.com/ISteamChartsService/GetGamesByConcurrentPlayers/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 the live leaderboard of games ranked by current concurrent players (rank, appid, current concurrent, peak). By default each row is enriched with the game name and review summary; pass enrich=false for raw ranked app ids. Credential-free public Steam WebAPI JSON.
{
"code": 200,
"msg": "OK",
"data": {
"chart": "concurrent",
"updated_unix": 1783764154,
"enriched": true,
"count": 2,
"ranks": [
{
"rank": 1,
"appid": 730,
"name": "Counter-Strike 2",
"concurrent_in_game": 877122,
"peak_in_game": 1308574
},
{
"rank": 2,
"appid": 570,
"name": "Dota 2",
"concurrent_in_game": 575671,
"peak_in_game": 761940
}
],
"source_url": "https://api.steampowered.com/ISteamChartsService/GetGamesByConcurrentPlayers/v1/"
}
}curl "https://api.crawlora.net/api/v1/steam/charts/concurrent" \
-H "x-api-key: $CRAWLORA_API_KEY"