ThomasPe / MS-Store-API

Trying to figure out the Microsoft Store API
MIT License
60 stars 4 forks source link

Version info? #2

Open TheArcaneBrony opened 3 years ago

TheArcaneBrony commented 3 years ago

Hi, I have stumbled across your little project here. I am looking for a way to retrieve package version info, do you know of any way to retrieve this info?

m-doescode commented 2 years ago

I'm not experienced in UWP or the store, but in the /products endpoint, the SKU can be found within.

it is formatted as so:

{
  "Products": [
    {
      "DisplaySkuAvailabilities": [
        {
          "Sku": {
            "SkuId": "<SKU ID>" // Sku Id can be found here
          }
        }
      ]
    }
  ]
}