Guest visitors can browse products and manage a shopping cart without authenticating. Cart state is tracked via a cart token passed in theDocumentation Index
Fetch the complete documentation index at: https://docs.rmz.gg/llms.txt
Use this file to discover all available pages before exploring further.
X-Cart-Token header.
How It Works
- When a guest adds their first item to the cart, the API creates a cart and returns a
cart_tokenin the response - Store this token on the client (e.g., in
localStorageor a cookie) - Include it in all subsequent cart and checkout requests via the
X-Cart-Tokenheader - When the customer authenticates, the cart is associated with their account and a
cart_tokenis returned in the auth response
X-Cart-Token Header
GET /cartPOST /cart/addPATCH /cart/items/{id}DELETE /cart/items/{id}DELETE /cart/clearGET /cart/countGET /cart/validateGET /cart/summaryPOST /cart/couponDELETE /cart/couponPOST /checkout
Example: Guest Cart Flow
Cart Token After Authentication
When a customer authenticates via the OTP flow, the verify response includes acart_token. Use this token for all subsequent cart operations alongside the Authorization header.
Public Endpoints (No Auth Required)
The following endpoints work without any authentication and do not require a cart token:- All
GET /store/*endpoints - All
GET /products/*endpoints - All
GET /categories/*endpoints - All
GET /pages/*endpoints - All
GET /components/*endpoints - All
GET /reviews/*endpoints GET /featured-products

