These public endpoints return reviews at the store level. For product-specific reviews, see Product Reviews.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 /reviews/recent
Get recent high-rated reviews (4+ stars). Useful for homepage testimonial sections.Authentication
None required.Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| limit | integer | No | Number of reviews (1-50). Default: 6 |
| type | string | No | Filter by review type: store (order reviews) or product (product reviews). Default: store |
Example Request
Response
Success (200)
When
type=store, only order-level reviews (not associated with a specific product) are returned. When type=product, only product-specific reviews are returned.GET /reviews
List all published reviews with filtering, sorting, and pagination.Authentication
None required.Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| per_page | integer | No | Reviews per page (1-50). Default: 15 |
| rating | integer | No | Filter by exact rating (1-5) |
| type | string | No | Filter: store (order reviews) or product (product reviews) |
| product_id | integer | No | Filter by specific product ID |
| sort | string | No | Sort order: newest, oldest, highest, lowest. Default: newest |
Example Request
Response
Success (200)
GET /reviews/stats
Get aggregate review statistics for the store.Authentication
None required.Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| type | string | No | Filter: store or product |
| product_id | integer | No | Get stats for a specific product |

