JSON Web Tokens (JWT) are a compact, URL-safe means of representing claims to be transferred between two parties. A JWT is composed of three parts separated by dots (
.): the **Header** (defines token metadata and algorithm), the **Payload** (contains JSON claims like user IDs and permissions), and the **Signature** (verifies that the sender is who they claim to be). To inspect incoming tokens, check out our
JWT Decoder. Here is the typical formatted token layout:
// Base64UrlEncoded format:
header_base64.payload_base64.signature_base64
// Example encoded JWT:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3...