🔑 Décodeur JWT — Analyser les JSON Web Tokens
Decode any JWT token and inspect the header, payload, and expiration. Check if a token is expired. 100% client-side — your token never leaves your browser.
Paste your JWT (the eyJ... string) and click Decode. The tool splits it into header, payload, and signature, decodes each Base64URL part, and shows the JSON. If the payload has an exp field, the tool shows whether the token is still valid or has expired.
How to Use
Paste your JWT
Copy your JWT token (starting with eyJ) and paste it into the input field.
Click Decode
Press Decode to instantly split and decode all three parts: header, payload, and signature.
Inspect the token
Read the decoded JSON, check expiration dates, algorithm, and any custom claims in the payload.
Frequently Asked Questions
Guide : Décodeur JWT
Qu'est-ce que c'est ?
Le Décodeur JWT décompose les JSON Web Tokens en leurs trois parties : en-tête, charge utile et signature — et affiche les claims de manière lisible.
Il est indispensable pour déboguer les problèmes d'authentification, vérifier l'expiration des tokens et inspecter les permissions encodées.
Comment utiliser
- Collez votre JWT (format
xxxxx.yyyyy.zzzzz) dans le champ d'entrée. - L'en-tête et la charge utile sont décodés et affichés en JSON formaté.
- Vérifiez les claims comme
exp,iat,subetiss. - Notez que la vérification de signature nécessite la clé secrète.
Conseils professionnels
- Vérifiez toujours
expcôté serveur — un JWT décodable n'est pas forcément valide. - Ne mettez jamais de données sensibles dans la charge utile JWT — elle n'est qu'encodée, pas chiffrée.