JWT Decoder
Decode JWT tokens to inspect header and payload claims.
- On your device
- No signup
Private on your device
Your information stays on your device and is not uploaded.
Decode JWT tokens to inspect header and payload claims.
Encode and sign JWTs with HS256 on your device.
Generate sample JWTs with common claims.
Format, minify, and validate JSON with optional key sorting.
Compare two JSON documents and list structural differences.
Format, minify, and validate XML with readable indentation.
Compare two XML documents and list structural differences.
Encode and decode text with Base64.
A JWT decoder reads the header and payload of a JSON Web Token without verifying signatures. Useful for debugging auth tokens locally—never paste production secrets into untrusted sites.
This JWT header decoder reveals the first segment of JSON Web Tokens—typically `alg`, `typ`, and key identifiers. Confirm signing algorithms and kid values when troubleshooting auth middleware and key rotation.
The header declares how the token was signed—it does not prove the signature is valid.
Reject tokens with unexpected algorithms like `none` or weak HMAC in production policies.
Paste the full JWT and read the decoded header JSON. Match `alg` and `kid` against your verification configuration.
Example: decode header `{ "alg": "RS256", "typ": "JWT", "kid": "abc123" }` to pick the correct public key from your JWKS endpoint.
Paste a JWT (optionally with a Bearer prefix). The tool splits header, payload, and signature, Base64URL-decodes the first two segments, and pretty-prints them as JSON. Common time claims (iat, nbf, exp) are shown as timestamps. Signatures are displayed but not verified.
Decoding a JWT does not verify its signature or prove the token is valid, trusted, or unexpired. Do not paste production secrets into untrusted tools.
Your data stays on your device and is not uploaded.
These pages use the same jwt decoder with guides tailored to specific search intents.
FAQ
Usually `JWT` for access tokens; some profiles use values like `at+jwt` for OAuth access tokens.
No. You need a valid signature verified with the issuer secret or public key.
Paste the full token—the tool decodes both segments together.
Page last reviewed: