sivin.dev
by sivin 00:00:00

← All toolsDev

JWT Decoder

Decode a JWT to read its header and claims as plain JSON, with the issued and expiry times shown in readable, human dates.

Time claims
  • Issued1/18/2018, 1:30:22 AM9 years ago
  • Expires3/17/2030, 5:46:40 PMin 4 yearsValid
Header
{
  "alg": "HS256",
  "typ": "JWT"
}
Payload
{
  "sub": "1234567890",
  "name": "Jane Doe",
  "role": "admin",
  "iat": 1516239022,
  "exp": 1900000000
}

More Dev tools