-
Notifications
You must be signed in to change notification settings - Fork 18
Get Sale Page
Kay Hennig edited this page Aug 9, 2023
·
4 revisions
No known rate limit
Authenticated: No
Method:
GET
Host:
store.steampowered.com
Path:
/api/salepage
Query Parameters:
Name Type Required Description id
string Yes ID of the sale, e.g. "cod". cc
string No Country code l
string No Language
Name Type Description status
number TODO
id
string ID of the sale, e.g. "cod". name
string 'Default' observed, seemingly unused. available
string Date-range of the sale, formatted as %b %d - %b %d
items[]
array Array of apps in the sale. items[].id
number The Steam AppID items[].name
string Name of app items[].type
number Type of app, usually seen as string but represented as an int here; enum structure not known. E.g. 0
is game.2
is bundle
GET https://store.steampowered.com/api/salepage/?id=cod
{
"status": 1,
"id": "cod",
"name": "Franchise - Call of Duty",
"available": "28 May, 2015 - 1 Jan, 1970",
"items": [
{
"id": 476600,
"name": "Call of Duty®: WWII",
"type": 0
},
{
"id": 6465,
"name": "Call of Duty® Franchise Collection",
"type": 2
},
{
"id": 6451,
"name": "Activision® Collection",
"type": 2
},
{
"id": 311210,
"name": "Call of Duty®: Black Ops III",
"type": 0
},
{
"id": 683100,
"name": "Call of Duty®: WWII - Season Pass",
"type": 0
},
{
"id": 366843,
"name": "Call of Duty®: Black Ops III - Season Pass",
"type": 0
},
{
"id": 581450,
"name": "Call of Duty®: Black Ops III - Zombies Chronicles",
"type": 0
},
{
"id": 10090,
"name": "Call of Duty: World at War",
"type": 0
},
{
"id": 292730,
"name": "Call of Duty®: Infinite Warfare",
"type": 0
},
{
"id": 209650,
"name": "Call of Duty®: Advanced Warfare - Gold Edition",
"type": 0
},
{
"id": 209160,
"name": "Call of Duty®: Ghosts",
"type": 0
},
{
"id": 255163,
"name": "Call of Duty®: Ghosts - Digital Hardened Edition",
"type": 0
},
{
"id": 202970,
"name": "Call of Duty®: Black Ops II",
"type": 0
},
{
"id": 115300,
"name": "Call of Duty®: Modern Warfare® 3",
"type": 0
},
{
"id": 10180,
"name": "Call of Duty®: Modern Warfare® 2",
"type": 0
},
{
"id": 7940,
"name": "Call of Duty® 4: Modern Warfare®",
"type": 0
},
{
"id": 222,
"name": "Call of Duty Warchest",
"type": 1
},
{
"id": 2640,
"name": "Call of Duty: United Offensive",
"type": 0
},
{
"id": 2630,
"name": "Call of Duty® 2",
"type": 0
},
{
"id": 2620,
"name": "Call of Duty®",
"type": 0
}
]
}