JSON Web Tokens (JWT) defined in RFC 7519 are an open, industry-standard method for representing claims securely between two parties. A JWT consists of three Base64Url-encoded segments separated by periods (
.): the
Header (defines algorithm and token type), the
Payload (contains subject claims and expiration metadata), and the
Signature (verifies payload integrity). To inspect or decode existing tokens, use our
JWT Decoder.
// Compact JWT Token Structure:
// [Header Base64Url].[Payload Base64Url].[Signature Base64Url]
// Example Encoded Token:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3...