-
Notifications
You must be signed in to change notification settings - Fork 26
Get Deck Compatibility Report
Revadike edited this page Feb 23, 2022
·
2 revisions
No known rate limit
Authenticated: No
Method:
GETHost:
store.steampowered.comPath:
/saleaction/ajaxgetdeckappcompatibilityreportQuery Parameters:
Name Type Required Description nAppIDnumber Yes The Steam AppID ccstring No Country code lstring No Language
Name Type Description successnumber Seems always 1?resultsobject Data from the Steam Deck compatibility report results.appidnumber The Steam AppID results.resolved_categorynumber The compatibility category:
1=Unsupported
2=Playable
3=Verified
results.resolved_items[]array All test results results.resolved_items[].display_typenumber This test's display type:
1= Note2= Fail3= Info4= Checkmarkresults.resolved_items[].loc_tokenstring 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"
}
]
}
}