100% Private

JWT & SAML Token Decoders

Understanding JWT Tokens

JSON Web Tokens (JWT) are compact, URL-safe tokens used for authentication and information exchange. They consist of three base64-encoded parts: header, payload, and signature, separated by dots.

JWT Structure

The header identifies the token type and signing algorithm. The payload contains claims—statements about the user and additional data. The signature verifies the token hasn't been tampered with.

Common Claims

  • iss: Token issuer
  • sub: Subject (usually user ID)
  • exp: Expiration time
  • iat: Issued at time
  • aud: Intended audience

SAML Tokens

SAML (Security Assertion Markup Language) uses XML-based tokens for enterprise single sign-on. Our decoder parses SAML assertions to display attributes and authentication information.


Privacy Notice: This site works entirely in your browser. We don't collect or store your data. Optional analytics help us improve the site. You can deny without affecting functionality.