Endpoint Playground
Test Crawlora's Steam Monthly Top Releases 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/top-releases" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"pages": [
{
"name": "Top Releases of February 2025",
"start_of_month_unix": 1738396800,
"url_path": "top_february_2025",
"appids": [
2246340,
1771300,
1295660,
2457220,
3241660
]
}
],
"source_url": "https://api.steampowered.com/ISteamChartsService/GetTopReleasesPages/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 monthly top-releases index: one page per month, each listing that month's top-released app ids (with the month label and start date). The app-id lists are large and not name-enriched; resolve names via /steam/items. Credential-free public Steam WebAPI JSON.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"pages": [
{
"name": "Top Releases of February 2025",
"start_of_month_unix": 1738396800,
"url_path": "top_february_2025",
"appids": [
2246340,
1771300,
1295660,
2457220,
3241660
]
}
],
"source_url": "https://api.steampowered.com/ISteamChartsService/GetTopReleasesPages/v1/"
}
}curl "https://api.crawlora.net/api/v1/steam/charts/top-releases" \
-H "x-api-key: $CRAWLORA_API_KEY"