Get storefront logs

Returns recent log messages from the storefront application.

Returns recent log messages from the storefront application.

Requires the storefront:log:read or storefront.read permission.

Request

GET /storefront/log

Query Parameters

ParameterTypeDefaultDescription
systemstringFilter by application name / system component.
afterstringISO 8601 timestamp. Only return logs after this point in time.
beforestringISO 8601 timestamp. Only return logs before this point in time.
offsetinteger0Offset for pagination.
limitinteger150Maximum number of log entries to return (capped at 150).

Headers

HeaderValue
AuthorizationBearer <token>

Response

Response Body

FieldTypeDescription
totalintegerTotal number of log entries matching the filters (before pagination).
messagesarrayPaginated list of log entry objects.

Each entry in messages has:

FieldTypeDescription
systemstringThe application or system component that emitted the log.
messagestringThe log message text.
timestampstringISO 8601 timestamp of when the log was emitted.

Example Response

{
  "total": 1024,
  "messages": [
    {
      "system": "storefront",
      "message": "Page /products/42 rendered in 123ms",
      "timestamp": "2026-04-10T09:15:00.000Z"
    },
    {
      "system": "storefront",
      "message": "GET /api/products 200 OK",
      "timestamp": "2026-04-10T09:14:58.000Z"
    }
  ]
}
Query Params
string

Filter by application name

date-time

Only logs after this time

date-time

Only logs before this time

integer
Defaults to 0
integer
≤ 150
Defaults to 150
Response

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json