Endpoint Playground
Test Crawlora's Steam Current Players 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/players?appid=570" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| appid | string | Yes | 570 | Numeric Steam app id |
{
"code": 200,
"msg": "OK",
"data": {
"appid": "570",
"player_count": 612345,
"source_url": "https://api.steampowered.com/ISteamUserStats/GetNumberOfCurrentPlayers/v1/?appid=570"
}
}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 official current concurrent-players count for an app. Credential-free public Steam WebAPI JSON.
{
"code": 200,
"msg": "OK",
"data": {
"appid": "570",
"player_count": 612345,
"source_url": "https://api.steampowered.com/ISteamUserStats/GetNumberOfCurrentPlayers/v1/?appid=570"
}
}curl "https://api.crawlora.net/api/v1/steam/players?appid=<appid>" \
-H "x-api-key: $CRAWLORA_API_KEY"