Endpoint Playground
Test Crawlora's SteamSpy Ownership Estimates 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/steamspy?appid=<appid>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| appid | string | Yes | Numeric Steam app id |
{
"code": 200,
"msg": "OK",
"data": {
"appid": 570,
"name": "Dota 2",
"developer": "Valve",
"publisher": "Valve",
"owners": "100,000,000 .. 200,000,000",
"ccu": 612345,
"average_forever": 25000,
"positive": 1600000,
"negative": 300000,
"price": "0",
"genre": "Action, Free to Play, Strategy",
"tags": {
"Free to Play": 9000,
"MOBA": 8000
},
"source": "steamspy",
"source_url": "https://steamspy.com/api.php?request=appdetails&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 third-party ownership, concurrent-user, playtime, and review estimates for an app from SteamSpy. These are SteamSpy estimates, not official Steam figures. Credential-free public third-party JSON.
{
"code": 200,
"msg": "OK",
"data": {
"appid": 570,
"name": "Dota 2",
"developer": "Valve",
"publisher": "Valve",
"owners": "100,000,000 .. 200,000,000",
"ccu": 612345,
"average_forever": 25000,
"positive": 1600000,
"negative": 300000,
"price": "0",
"genre": "Action, Free to Play, Strategy",
"tags": {
"Free to Play": 9000,
"MOBA": 8000
},
"source": "steamspy",
"source_url": "https://steamspy.com/api.php?request=appdetails&appid=570"
}
}curl "https://api.crawlora.net/api/v1/steam/steamspy?appid=<appid>" \
-H "x-api-key: $CRAWLORA_API_KEY"