🔑 JWT Decoder
Decode and analyze JSON Web Tokens (JWT) with detailed inspection
💡 About JWT
JSON Web Token (JWT) is a compact URL-safe means of representing claims to be transferred between two parties.
- Header: Contains token type and signing algorithm
- Payload: Contains the claims (data)
- Signature: Verifies the token hasn't been altered
- Common Claims: exp (expiration), iat (issued at), sub (subject)