Decode, verify, and generate JSON Web Tokens, which are an open, industry standard RFC 7519 method for representing claims securely between two parties.


Paste a JWT below that you'd like to decode, validate, and verify.
Encoded value

JSON Web Token (JWT)

JWT

Valid JWT

Signature Verified

Decoded Header

{
  : "HS256",
  : "JWT"
}

Decoded Payload

{
  : "1234567890",
  "name": "John Doe",
  "admin": true,
  : 
}

JWT Signature Verification(Optional)

Enter the secret used to sign the JWT below:

Secret

Secret

Valid secret

Encoding Format