Skip to main content

JWT Decoder

November 10, 2025

Decode and inspect JSON Web Tokens (JWT)

Decode and inspect JWT tokens to view header, payload, and signature information. All processing happens in your browser.

JWT Token Input
Paste the complete JWT token (header.payload.signature)

Token Structure
Header
Payload
Signature
Header
Payload (Claims)
Signature Information
JWT Information
Standard Claims
issIssuer - who created the token
subSubject - who the token is about
audAudience - who the token is for
expExpiration Time - when token expires
nbfNot Before - when token becomes valid
iatIssued At - when token was created
jtiJWT ID - unique identifier
Common Algorithms
HS256HMAC with SHA-256 (symmetric)
HS384HMAC with SHA-384 (symmetric)
HS512HMAC with SHA-512 (symmetric)
RS256RSA with SHA-256 (asymmetric)
RS384RSA with SHA-384 (asymmetric)
RS512RSA with SHA-512 (asymmetric)
ES256ECDSA with SHA-256 (asymmetric)
noneNo signature (insecure)
Privacy First

This tool only decodes JWTs client-side. It does not verify signatures or validate tokens. Never paste tokens containing sensitive data into untrusted tools.