Waiting for token...
debug & inspect
See what's inside your tokens
Paste a JWT below. Everything happens locally โ your tokens never leave this page.
JSON Web Token
header.payload.signature
HEADER
algorithm & type
PAYLOAD
claims & data
Waiting for token...
about JSON Web Tokens
JSON Web Tokens (JWT) consist of three parts: header, payload, and signature, each base64url-encoded and separated by dots. The header typically contains the algorithm (alg) and token type (typ). The payload contains claims โ statements about an entity and additional data. The signature verifies the token hasn't been tampered with.
This tool decodes JWTs entirely in your browser. No data is sent to any server. Common claims like exp (expiration), iat (issued at), and sub (subject) are highlighted for quick inspection.