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 decode bearer token online tool parses JWT access tokens copied from `Authorization: Bearer` headers. Strip the prefix, paste the token, and inspect claims when debugging API clients, mobile apps, and SPA auth flows.
Bearer tokens grant access to whoever holds them—treat decoded output as sensitive.
Short-lived access tokens limit exposure; still avoid sharing them in support channels.
Paste the token without the `Bearer ` prefix (or paste the full header line if the tool strips it), then review decoded JSON.
Example: copy `eyJhbG...` from a failing curl request, decode claims, and see missing `scope` before updating your OAuth client.
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
Paste the JWT itself; remove `Bearer ` if the tool expects raw token text.
Only JWT-formatted bearer tokens decode. Opaque tokens have no readable payload.
No. Validation checks signature, expiry, issuer, and audience on the server.
Page last reviewed: