Skip to content

Get Deck Compatibility Report

Revadike edited this page Feb 23, 2022 · 2 revisions

GET /saleaction/ajaxgetdeckappcompatibilityreport

Rate limits

No known rate limit

Request

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

Response

200 OK

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 = Unsupported
  • 2 = Playable
  • 3 = Verified
results.resolved_items[] array All test results
results.resolved_items[].display_type number This test's display type:
  • 1 = Note
  • 2 = Fail
  • 3 = Info
  • 4 = Checkmark
results.resolved_items[].loc_token string This test's localization label (E.g. English)

Example

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"
            }
        ]
    }
}
Clone this wiki locally