-
Notifications
You must be signed in to change notification settings - Fork 27
Get Sale Page
Kay Hennig edited this page Aug 9, 2023
·
4 revisions
No known rate limit
Authenticated: No
Method:
GETHost:
store.steampowered.comPath:
/api/salepageQuery Parameters:
Name Type Required Description idstring Yes ID of the sale, e.g. "cod". ccstring No Country code lstring No Language
Name Type Description statusnumber TODOidstring ID of the sale, e.g. "cod". namestring 'Default' observed, seemingly unused. availablestring Date-range of the sale, formatted as %b %d - %b %ditems[]array Array of apps in the sale. items[].idnumber The Steam AppID items[].namestring Name of app items[].typenumber Type of app, usually seen as string but represented as an int here; enum structure not known. E.g. 0is game.2is 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
}
]
}