Skip to content

Get a player's journey log

GET
/api/v1/players/{id}/journey

Returns the raw per-player event log (joins, proxy-observed transfers, crashes affecting the player, disconnects) recorded by the controller, newest first. This is an append-only audit log; modules layer typed stage interpretations on top of it in their own storage.

id
required
string

Player UUID

limit
integer format: int32

Maximum number of entries to return (1..1000, default 100). Ignored when ‘since’ is provided.

since
string

ISO-8601 instant; returns entries with a timestamp >= this value. Mutually exclusive with ‘limit’.

Journey entries

Array<object>
object
playerUuid
string
playerName
string
eventType
string
fromInstanceId
string
toInstanceId
string
group
string
timestamp
string format: date-time

Invalid UUID or ‘since’ value

Unauthorized

Forbidden