JWT Token
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
HeaderCopy
PayloadCopy
⚠ This tool only decodes JWTs — it does not verify the signature. Never share secret keys.
How it works
A JSON Web Token (JWT) is a compact, URL-safe means of representing claims between two parties. JWTs consist of three Base64URL-encoded parts: header (algorithm & type), payload (claims), and signature. This tool decodes the header and payload sections and checks the exp claim for expiry — it does NOT verify the signature.
01
Paste your JWT token
02
View decoded header and payload
03
Check expiry and copy claims
Advertisement