Skip to content
GigAI Tools
Definition

What is JWT?

A plain-English definition, and the tools that work with it.

Definition

A JWT (JSON Web Token) is a compact, signed token used to prove identity between systems: most commonly to keep a user logged in via an API. It packs claims (like a user ID and expiry) into a Base64 string with a signature that lets the server verify it wasn't tampered with.

  • A JWT has three dot-separated parts (header, payload, signature) each Base64-encoded.
  • The payload is encoded, not encrypted: anyone can read it, so never put secrets in a JWT.
  • The signature is what matters. It proves the token is authentic and unmodified.

Frequently asked questions

Try JWT Decoder

Free, private and instant. Everything runs in your browser.