JWT Decoder
Decode JSON Web Tokens (JWT) to view header, payload, and signature information
JWT Token Input
Header
Payload
About JWT (JSON Web Tokens)
What is a JWT?
JSON Web Token (JWT) is an open standard for securely transmitting information between parties as a JSON object. It consists of three parts: Header, Payload, and Signature.
Security Note
This tool only decodes the JWT for inspection. The signature cannot be verified without the secret key. Never share your JWT tokens publicly.