Users
Get the current bearer token info
Decode the bearer token used to make this request and return its standard JWT claims (aud, jti, iat, nbf, exp, sub). Useful as an introspection endpoint when a client needs to know when its token expires or which user the token is currently bound to without parsing the JWT itself.
The token is verified with Trybe's signing key before the claims are returned, so a successful response also confirms the token is currently valid. The response only includes the six claims listed above; custom claims and private extensions are intentionally stripped.
get/token-info
Response
The decoded JWT claims for the caller's bearer token.
Changes
No recorded changes to this endpoint across all 1 revision of this API.