Skip to content

List Events

GET
/admin/analytics/events
curl --request GET \
--url 'http://localhost:9000/admin/analytics/events?limit=50&offset=0&source=storefront'
limit
integer
default: 50
offset
integer
0
order
string
fields
string
event
string
actor_id
string
source
string
Allowed values: storefront backend
sales_channel_id
string
start_date
string
end_date
string

OK

Media type application/json
object
events
Array<object>
object
id
string
event
string
actor_id
string
source
string
sales_channel_id
string
properties
string
timestamp
string
created_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"events": [
{
"id": "example",
"event": "example",
"actor_id": "example",
"source": "example",
"sales_channel_id": "example",
"properties": "example",
"timestamp": "example",
"created_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}