├── .gitignore ├── LICENSE ├── README.md ├── endpoints ├── v8.0 │ └── products.md └── v9.0 │ ├── manifestSearch.md │ └── pages.md └── testing └── product-badge.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasPe/MS-Store-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasPe/MS-Store-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasPe/MS-Store-API/HEAD/README.md -------------------------------------------------------------------------------- /endpoints/v8.0/products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasPe/MS-Store-API/HEAD/endpoints/v8.0/products.md -------------------------------------------------------------------------------- /endpoints/v9.0/manifestSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasPe/MS-Store-API/HEAD/endpoints/v9.0/manifestSearch.md -------------------------------------------------------------------------------- /endpoints/v9.0/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasPe/MS-Store-API/HEAD/endpoints/v9.0/pages.md -------------------------------------------------------------------------------- /testing/product-badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasPe/MS-Store-API/HEAD/testing/product-badge.html --------------------------------------------------------------------------------