← Back to tools

JWT Decoder

Decode JWT header and payload instantly in your browser without sending data to a server.

Paste a JWT and click Decode.

Feedback

Was this tool useful?

Overview

Decode the header and payload of a JSON Web Token (JWT) into readable JSON. Useful for debugging authentication flows and inspecting claims such as exp, sub, and custom fields.

How to use

  1. Paste a JWT (three Base64URL parts separated by dots).
  2. Click Decode.
  3. Inspect the header (algorithm, type) and payload (claims) as formatted JSON.

Examples

Notes

FAQ

Can this tool verify a JWT signature?
No. Verification requires the signing secret or public key. The tool only decodes the Base64URL parts.
Is a JWT encrypted?
A standard signed JWT (JWS) is only encoded, not encrypted. Use JWE if payload confidentiality is required.
Is my token uploaded?
No. Decoding happens entirely in your browser, but prefer non-production tokens as a general precaution.

Embed this tool

Paste this iframe into any HTML page to embed JWT Decoder on your site:

Related Tools