Endpoint Playground
Test Crawlora's Steam App News 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/news?appid=<appid>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| appid | string | Yes | Numeric Steam app id | |
| count | integer | No | Number of posts (max 50) | |
| maxlength | integer | No | Max characters of each post body; default 300, set -1 for full content |
{
"code": 200,
"msg": "OK",
"data": {
"appid": "570",
"count": 1,
"items": [
{
"gid": "5123456789",
"title": "Gameplay Update",
"url": "https://store.steampowered.com/news/app/570/view/5123456789",
"author": "Valve",
"contents": "Balance changes...",
"feedlabel": "Community Announcements",
"feedname": "steam_community_announcements",
"date": 1619740800,
"is_external_url": true
}
],
"source_url": "https://api.steampowered.com/ISteamNews/GetNewsForApp/v2/?appid=570&count=10&maxlength=300"
}
}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 recent news/announcement posts for an app (title, author, contents, feed, date). Credential-free public Steam WebAPI JSON.
{
"code": 200,
"msg": "OK",
"data": {
"appid": "570",
"count": 1,
"items": [
{
"gid": "5123456789",
"title": "Gameplay Update",
"url": "https://store.steampowered.com/news/app/570/view/5123456789",
"author": "Valve",
"contents": "Balance changes...",
"feedlabel": "Community Announcements",
"feedname": "steam_community_announcements",
"date": 1619740800,
"is_external_url": true
}
],
"source_url": "https://api.steampowered.com/ISteamNews/GetNewsForApp/v2/?appid=570&count=10&maxlength=300"
}
}curl "https://api.crawlora.net/api/v1/steam/news?appid=<appid>" \
-H "x-api-key: $CRAWLORA_API_KEY"