Lite Toolbox
Developer Tools

JWT Decoder

Decode JWT Header and Payload locally. Signature verification is not performed.

Result
Header:
{
  "alg": "HS256",
  "typ": "JWT"
}

Payload:
{
  "sub": "1234567890",
  "name": "John Doe",
  "iat": 1516239022,
  "exp": 1893456000
}

--- Time Info ---
Issued at: 2018/1/18 09:30:22 (2018-01-18T01:30:22.000Z)
Expires at: 2030/1/1 08:00:00 (2030-01-01T00:00:00.000Z)
Status: Expires in 1253d 10h

--- Standard Fields ---
Subject: 1234567890

Use Cases

How to Use

Use the workspace above to type, paste, choose, or drop content and get the result immediately. Files and text stay local in your browser by default.

FAQ

Does it verify signatures?

No. It only decodes the token locally.

Can I paste sensitive tokens?

The tool does not upload data, but avoid handling sensitive tokens in untrusted environments.

Related Tools