JSON Web Token (JWT) Decoder
This free online tool allows you to easily decode JSON Web Tokens (JWTs) and view their contents without sending your sensitive token data to a remote server.
A standard JWT consists of three parts separated by dots (.):
- Header: Contains metadata about the token, such as the cryptographic algorithm used.
- Payload: The actual data (claims) carried by the token.
- Signature: Used to verify that the sender of the JWT is who it says it is and to ensure that the message wasn’t changed along the way.
Simply paste your JWT into the input box to instantly inspect the header and payload objects. Because this tool operates entirely inside your web browser, it is a safe and private way to debug your authentication tokens.