Skip to main content

JWT Decoder

·145 words·1 min
Jack Warner
Author
Jack Warner
A little blog by me

Paste your JWT token below to decode and inspect its header, payload, and signature. This tool runs entirely in your browser, no data is sent to any server.

What is a JWT?
#

A JSON Web Token (JWT) is a compact, URL-safe way to represent claims between two parties. It consists of three parts:

  1. Header - Contains the token type and signing algorithm
  2. Payload - Contains the claims (user data, permissions, etc.)
  3. Signature - Verifies the token hasn’t been tampered with

Common JWT Claims
#

Claim Name Description
iss Issuer Who issued the token
sub Subject The user/entity the token represents
aud Audience Intended recipient of the token
exp Expiration When the token expires (Unix timestamp)
nbf Not Before Token not valid before this time
iat Issued At When the token was issued
jti JWT ID Unique identifier for the token