Retrieve product information to display in your embedded checkout widget. Returns pricing, stock, images, store details, and tax settings.Documentation Index
Fetch the complete documentation index at: https://docs.rmz.gg/llms.txt
Use this file to discover all available pages before exploring further.
Get Product
This is a public endpoint. It requires the
X-Embed-Key header but no customer authentication.Path Parameters
| Parameter | Type | Description |
|---|---|---|
productId | integer | The ID of the product to fetch |
Headers
| Header | Required | Description |
|---|---|---|
X-Embed-Key | Yes | Your store’s embed public key |
Example Request
Success Response (200)
Response Fields
| Field | Type | Description |
|---|---|---|
id | integer | Product ID |
name | string | Product display name |
description | string | Product description (may contain HTML) |
price | float | Original listed price |
discount_price | float | null | Discounted price, or null if no discount |
actual_price | float | The effective price the customer pays (discount price if active, otherwise original price) |
is_discounted | boolean | Whether a discount is currently active |
image | string | null | Primary product image URL via CDN |
extra_images | array | Additional product image URLs |
stock | integer | Number of items available |
in_stock | boolean | Whether stock is greater than zero |
type | string | Product type: code, file, subscription, service, card |
min_qty | integer | Minimum purchase quantity |
max_qty | integer | Maximum purchase quantity (capped at stock for code products, max 10) |
store.id | integer | Store ID |
store.name | string | Store display name |
store.logo | string | Store logo URL |
store.currency | string | Store currency code (e.g., SAR, USD) |
store.language | string | Store language (ar, en) |
tax_enabled | boolean | Whether tax is enabled for this store |
tax_rate | float | Tax rate as a percentage (e.g., 15.0 for 15% VAT) |

