JWT Decoder — Inspect JSON Web Tokens
Paste a JWT to view its header, payload, and expiry — decoded entirely in your browser.
Decode-only. Signature is not verified — JWTs are not encrypted, so anyone with the token can read its contents.
Header
{
"alg": "HS256",
"typ": "JWT"
}Payload
{
"sub": "1234567890",
"name": "Jane Doe",
"iat": 1715792000,
"exp": 1747328000
}- Issued at
- 2024-05-15T16:53:20.000Z
- Expires at
- 2025-05-15T16:53:20.000Z
- Status
- Expired
Advertisement
How to use
- Step 1: Paste the JWT (three Base64URL parts joined by dots)
- Step 2: View the decoded header and payload
- Step 3: Check issued-at and expiry timestamps
Advertisement
Frequently asked questions
A JWT (JSON Web Token) is a compact, URL-safe token used for authentication.