JWT Decoder
Decode JWT tokens. View header and payload as JSON.
Related tools
How it works
- 1Paste a JWT token (header.payload.signature format) into the input.
- 2The tool decodes the header (Base64URL) and displays it as JSON.
- 3The payload is decoded and shown as formatted JSON.
- 4Note: signature is not verifiedβuse for inspection only.
Example
Input: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0.dozjgNryP4J3jVmNHl0w5N_XgL0n3I9PlFUP0THsR8U
Output: Header: {"alg":"HS256"}, Payload: {"sub":"1234567890"}