Path parameters
-
The slug/name for the machine definition.
Minimum length is
1. Format should match the following pattern:^[a-zA-Z0-9_-]{1,128}$. -
The slug/name for the machine instance.
Minimum length is
1. Format should match the following pattern:^[a-zA-Z0-9_-]{1,128}$.
GET
/machines/{machineSlug}/i/{instanceSlug}/events
curl \
--request GET 'https://api.statebacked.dev/machines/my-machine/i/user-1234/events' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"transitions": [
{
"createdAt": "2026-05-04T09:42:00Z",
"state": "string",
"event": {
"type": "string"
}
}
],
"cursor": "string"
}