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.
Store
Retrieve your store’s profile information and aggregate statistics.Get Store Information
GET
Returns the authenticated store’s profile data.
/storeAuthentication
Headers
| Header | Value | Required |
|---|---|---|
Authorization | Bearer YOUR_API_TOKEN | Yes |
Accept | application/json | Recommended |
Example Request
Success Response
Returns the full store object with all fields exceptis_risky and is_restricted (which are hidden). Below is an abbreviated example — the actual response includes all store fields.
The response includes the complete store model. Additional fields may be present depending on store configuration. The fields
is_risky and is_restricted are always hidden from the response.Error Responses
| Code | Description |
|---|---|
401 | Unauthorized — invalid or missing token |
Get Store Statistics
GET
Returns aggregate statistics for the authenticated store. Results are cached for 3 minutes.
/store/staticsAuthentication
Headers
| Header | Value | Required |
|---|---|---|
Authorization | Bearer YOUR_API_TOKEN | Yes |
Accept | application/json | Recommended |
Example Request
Success Response
Response Fields
| Field | Type | Description |
|---|---|---|
sales_total | float | Total revenue (excluding pending, cancelled, refunded orders) |
sales_count | integer | Total number of completed orders |
customers_count | integer | Total registered customers |
products_count | integer | Total products in store |
categories_count | integer | Total categories |
subscribers_count | integer | Total active subscriptions |
pages_count | integer | Total custom pages |
coupons_count | integer | Total coupon codes |
duration | string | Always "lifetime" — indicates statistics cover all time |
Statistics are cached for 3 minutes. Frequent polling will return the same data until the cache expires.
Error Responses
| Code | Description |
|---|---|
401 | Unauthorized — invalid or missing token |

