JWT Token Decoder

Decode and analyze JSON Web Tokens (JWT) safely in your browser

Encoded Token

Decode a token to view details

JWT Scenarios & Examples

Standard Access Token

A typical authenticating token with subject, issuer, and expiration.

{
  "sub": "1234567890",
  "name": "John Doe",
  "iat": 1516239022,
  "exp": 1516242622,
  "iss": "https://auth.example.com"
}