List active sessions
GET /api/v1/auth/sessions
GET
/api/v1/auth/sessions
Return the caller’s active sessions. Auth is stateless JWT with no durable session registry, so this synthesizes the single session backing the current request from its own token claims.
Authorizations
Responses
200
Successful Response
Array<object>
One row in GET /api/v1/auth/sessions.
Attributes:
id: Session identifier (the token’s jti claim).
device: Best-effort device label from the request’s User-Agent.
ip: Best-effort client IP address.
last_active: When this session’s token was issued (iat).
current: Whether this is the session making the request.
object
current
required
boolean
device
required
string
id
required
string
ip
required
string
last_active
required
string