JWT Token Decoder
Decode and inspect JSON Web Tokens
JWT Token
0 charactersAbout JWT
JSON Web Tokens (JWT) are an open standard (RFC 7519) for securely transmitting information between parties as a JSON object. A JWT consists of three parts: Header, Payload, and Signature, separated by dots (.).
Security Note
This tool only decodes and displays JWT contents. It does not verify the signature. Never paste tokens containing sensitive information into untrusted tools. All decoding happens in your browser - no data is sent to any server.