Does this verify the JWT signature?
No, it only decodes the token.
Developer Tools
Decode JWT header and payload directly in your browser.
Inspect JSON Web Token header and payload claims without sending the token to a backend service.
This tool only decodes JWTs. It does not verify signatures.
Decode JWT header and payload locally in your browser.
// Header JSON will appear here. // Payload JSON will appear here. // Signature will appear here. Add a token with header, payload, and signature parts separated by dots.
The header and payload are Base64URL-decoded and formatted as JSON.
Use a trusted verification flow when you need to confirm token authenticity.
A JWT has three dot-separated parts: header, payload, and signature. This tool decodes the first two parts as JSON and displays the signature text separately.
No, it only decodes the token.
No, decoding runs locally in your browser.
A JWT typically has a header, payload, and signature separated by dots.