JWT Decoder
Parse and decode JSON Web Tokens to analyze their structure and content. Secure, fast, and completely free.
JWT Token Input
Paste your JSON Web Token below to decode it
Understanding JWT Structure
Learn about the three parts of a JSON Web Token
Header
Contains metadata about the token, including the signing algorithm (alg) and token type (typ). Common algorithms include HS256, RS256, and ES256.
Payload
Contains the claims - statements about an entity and additional data. Includes standard claims like iss (issuer), exp (expiration), and sub (subject).
Signature
Used to verify the token hasn't been tampered with. Created by encoding the header and payload with a secret key using the specified algorithm.
Common JWT Claims
Standard claims you'll find in JWT payloads
Standard Claims
Timing Claims
Other Developer Tools
Explore our complete toolkit for developers