Décodeur JWT
Décodez et inspectez des jetons JWT.
Paste a JWT to decode its header and payload as readable JSON. The token is decoded locally in your browser — it is never sent anywhere, and the signature is not verified.
Le décodage lit seulement le jeton — il ne vérifie PAS la signature. Ne collez jamais de jetons secrets ou de production.
Votre saisie est traitée localement dans votre navigateur — rien n'est envoyé, stocké ni journalisé.
Ça vous a fait gagner du temps ?Offrez-moi un café
Comment ça marche
- 1 Paste your JWT.
- 2 The header and payload are decoded live.
- 3 Copy either section as JSON.
Cas d'usage courants
- Inspect the claims in a token.
- Check expiry and issued-at times.
- Debug authentication during development.
- See which algorithm a token uses.
Questions fréquentes
Is my input sent to a server?
No. Everything runs locally in your browser — your input is never uploaded, stored or logged.
Does this verify the signature?
No. Decoding only reads the header and payload — it does NOT verify the signature, so never trust a decoded token for security decisions.
Is my token uploaded?
No. The token is decoded entirely in your browser and is never sent to a server.
Is it really free?
Yes — free, with no signup and no limits.