-
Notifications
You must be signed in to change notification settings - Fork 18
Get DLC For App
Revadike edited this page Feb 24, 2022
·
2 revisions
No known rate limit
Authenticated: No
Method:
GET
Host:
store.steampowered.com
Path:
/api/dlcforapp/
Query Parameters:
Name Type Required Description appid
number TODO
The Steam AppID cc
string TODO
Country code l
string TODO
Language
Name Type Description status
number TODO
appid
string TODO
name
string TODO
dlc[]
array TODO
dlc[].id
number TODO
dlc[].name
string TODO
dlc[].header_image
string TODO
dlc[].price_overview
object TODO
dlc[].price_overview.currency
string TODO
dlc[].price_overview.initial
number TODO
dlc[].price_overview.final
number TODO
dlc[].price_overview.discount_percent
number TODO
dlc[].platforms
object TODO
dlc[].platforms.windows
boolean TODO
dlc[].platforms.mac
boolean TODO
dlc[].platforms.linux
boolean TODO
dlc[].release_date
object TODO
dlc[].release_date.steam
string TODO
dlc[].release_date.mac
string TODO
dlc[].release_date.linux
string TODO
GET https://store.steampowered.com/api/dlcforapp/?appid=440&cc=us&l=english
{
"status": 1,
"appid": "440",
"name": "Team Fortress 2",
"dlc": [
{
"id": 629330,
"name": "Fight Songs: The Music Of Team Fortress 2",
"header_image": "https://cdn.akamai.steamstatic.com/steam/apps/629330/header.jpg?t=1594413044",
"price_overview": {
"currency": "USD",
"initial": 1299,
"final": 1299,
"discount_percent": 0
},
"platforms": {
"windows": true,
"mac": true,
"linux": true
},
"release_date": {
"steam": "1493937689",
"mac": "1493937660",
"linux": "1493937660"
}
}
]
}