Loading...
Decode and inspect JSON Web Tokens (JWT)
JSON Web Tokens (JWT) are a compact, URL-safe means of representing claims to be transferred between two parties. This tool decodes JWTs to inspect their header and payload contents, and can verify signatures.
Header
Contains token type and signing algorithm
Payload
Contains claims (user data and metadata)
Signature
Verifies the token hasn't been altered
Security: This decoder runs entirely in your browser. No data is sent to any server.
Enter your JWT token
View header and payload
Validate token structure