JWT Decoder

Decode JSON Web Tokens to inspect header, payload, and claims. Detects expiration and common issues.

JWT Token
Paste a JWT to decode
Header (Algorithm & Token Type)
Payload (Claims & Data)
Signature
Token Info

Understanding JWT Structure

A JSON Web Token consists of three Base64URL-encoded parts separated by dots: header.payload.signature

PartContainsCommon Fields
HeaderAlgorithm & token typealg, typ
PayloadClaims (data)iss, sub, aud, exp, nbf, iat, jti
SignatureVerification hashHMAC-SHA256, RSA, ECDSA

Common Claims:

Security Note: This tool only decodes JWTs — it does not verify signatures. Anyone can create a JWT with any claims. Always verify the signature server-side using your secret key before trusting claims.