microsoftstore_related
Find products related to a Microsoft Store item using its product ID. Returns paginated recommendations from the store's public API, with optional locale, country, and product type filters.
Instructions
Get products related to a Microsoft Store product. Returns products related to a seed product id, paginated. product_type must match the seed product's own media type (apps -> Application, games -> Game, passes -> Passes) -- any other value is rejected upstream. Omit product_type to have it resolved automatically from product_id via one extra lightweight lookup; pass it explicitly to skip that lookup. Credential-free public Microsoft Store data, read directly from the store's own recommendation API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page number | |
| locale | No | Display locale (BCP-47) | |
| country | No | Store country/region code (ISO-2) | |
| page_size | No | Related products per page (max 24) | |
| product_id | Yes | Seed Microsoft Store product id | |
| product_type | No | The seed product's own type. Omit to auto-resolve from product_id. |