JWT Decoder
Decode and inspect JWT tokens with expiration checking
About JWT
JSON Web Tokens (JWT) are an open standard (RFC 7519) for securely transmitting information between parties.
- Header: Contains the algorithm (alg) and token type (typ)
- Payload: Contains the claims (user data, expiration, etc.)
- Signature: Verifies the token hasn't been tampered with