Back to tools
JWT Parser
Decode and inspect JSON Web Tokens
JWT Token
About JWT
Header: Contains the token type and signing algorithm
Payload: Contains the claims (data) like user info, expiration
Signature: Verifies the token hasn't been tampered with
Common Claims: iat (issued at), exp (expiration), sub (subject)