JWT Decoder

Decode and inspect JSON Web Token headers, payloads, and expiry status — no secret needed.

JWT Token

Valid(expires 20 Nov 2286, 11:16:39 pm IST)
Algorithm: HS256

Timestamps

iat171623902221 May 2024, 02:33:42 am IST
exp999999999920 Nov 2286, 11:16:39 pm IST
Header
{
"alg": "HS256",
"typ": "JWT"
}
PayloadValid
{
"sub": "user_123",
"name": "Rohan Sharma",
"email": "rohan@example.com",
"role": "admin",
"iat": 1716239022,
"exp": 9999999999
}
Signature

SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

Signature verification requires the secret key and cannot be done client-side securely. Use your backend to verify.