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.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Player UUID
Query Parameters
Section titled “Query Parameters ” 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’.
Responses
Section titled “ Responses ”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