-
Notifications
You must be signed in to change notification settings - Fork 18
Get Deck Compatibility Report
Revadike edited this page Feb 23, 2022
·
2 revisions
No known rate limit
Authenticated: No
Method:
GET
Host:
store.steampowered.com
Path:
/saleaction/ajaxgetdeckappcompatibilityreport
Query Parameters:
Name Type Required Description nAppID
number Yes The Steam AppID cc
string No Country code l
string No Language
Name Type Description success
number Seems always 1
?results
object Data from the Steam Deck compatibility report results.appid
number The Steam AppID results.resolved_category
number The compatibility category:
1
= Unsupported2
= Playable3
= Verifiedresults.resolved_items[]
array All test results results.resolved_items[].display_type
number This test's display type:
1
= Note2
= Fail3
= Info4
= Checkmarkresults.resolved_items[].loc_token
string This test's localization label (E.g. English)
GET https://store.steampowered.com/saleaction/ajaxgetdeckappcompatibilityreport?nAppID=440&l=english&cc=US
{
"success": 1,
"results": {
"appid": 440,
"resolved_category": 2,
"resolved_items": [
{
"display_type": 3,
"loc_token": "#SteamDeckVerified_TestResult_DefaultControllerConfigNotFullyFunctional"
},
{
"display_type": 3,
"loc_token": "#SteamDeckVerified_TestResult_ControllerGlyphsDoNotMatchDeckDevice"
},
{
"display_type": 3,
"loc_token": "#SteamDeckVerified_TestResult_InterfaceTextIsNotLegible"
},
{
"display_type": 4,
"loc_token": "#SteamDeckVerified_TestResult_DefaultConfigurationIsPerformant"
},
{
"display_type": 1,
"loc_token": "#SteamDeckVerified_TestResult_ExternalControllersNotSupportedPrimaryPlayer"
}
]
}
}