List Events
GET
/admin/analytics/events
const url = 'http://localhost:9000/admin/analytics/events?limit=50&offset=0&source=storefront';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/analytics/events?limit=50&offset=0&source=storefront'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
event
string
actor_id
string
source
string
sales_channel_id
string
start_date
string
end_date
string
Responses
Section titled “ Responses ”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}