Endpoint Playground
Test Crawlora's Steam Global Achievements 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/achievements?appid=440" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| appid | string | Yes | 440 | Numeric Steam app id |
{
"code": 200,
"msg": "OK",
"data": {
"appid": "440",
"count": 1,
"achievements": [
{
"name": "TF_PLAY_GAME_EVERYCLASS",
"percent": 42.5
}
],
"source_url": "https://api.steampowered.com/ISteamUserStats/GetGlobalAchievementPercentagesForApp/v2/?gameid=440"
}
}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 global unlock percentage for each of an app's achievements, sorted most-unlocked first. Apps without global achievement stats return an empty list. Credential-free public Steam WebAPI JSON.
{
"code": 200,
"msg": "OK",
"data": {
"appid": "440",
"count": 1,
"achievements": [
{
"name": "TF_PLAY_GAME_EVERYCLASS",
"percent": 42.5
}
],
"source_url": "https://api.steampowered.com/ISteamUserStats/GetGlobalAchievementPercentagesForApp/v2/?gameid=440"
}
}curl "https://api.crawlora.net/api/v1/steam/achievements?appid=<appid>" \
-H "x-api-key: $CRAWLORA_API_KEY"