> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Product Page Loaded ## Article: Product Page Loaded ## Article Link: https://dev.wix.com/docs/sdk/host-modules/site/events/wix-stores/product-page-loaded.md ## Article Content: # Product Page Loaded Triggered when a product page loads. ### Properties | Name | Type | Description | | ----------------- | -------- | ----------------------------------------- | | `productId` | GUID | Product ID. | | `name` | string | Product name. | | `currency` | currency | Default site currency in ISO-4217 format. | | `price` | number | Product price. | | `sku` | string | Product Stock Keeping Unit. | | `_internalEventId` | GUID | Event ID. | | `userId` | GUID | Wix user ID. | ### Example ```json { "productId": "224c5d1b-e278-06d1-dea5-ec51528d266a", "name": "Coffee Bomb: Two 250g Blends of Premium Columbian Beans", "currency": "USD", "price": 29, "sku": "366615376135191", "visitorId": "6d0465bd-ea9e-4fdf-b7f4-6979755e13d8", "_internalEventId": "2206e562-b643-40bd-87c2-657e3bceac0f", "isPremium": true, "userId": "31ff72a7-bc9f-4925-bc84-e0d2fe493a5a", "metaSiteId": "9b7f4f1c-f125-4a36-92a7-9eb1e0f0fbf6" } ```