JWT Decoder

Decode JSON Web Tokens, inspect header algorithm & payload claims, and analyze expiration status instantly.

Encoded JWT Token

Header (Algorithm) Payload (Claims) Signature
Token Structure Valid • Algorithm: HS256
Expires in 2200d (9/7/2032, 3:20:00 AM)
Header: Algorithm & Token Type
{
  "alg": "HS256",
  "typ": "JWT"
}
Payload: Claims & Data
{
  "sub": "1234567890",
  "name": "Anish Kumar Pandey",
  "role": "admin",
  "iat": 1705789600,
  "exp": 1978140000
}

More Developer Tools