Developer Suite

JWT Token Decoder

Decode JSON Web Tokens (JWT) payload and header instantly. Inspect claims and verify HMAC-SHA signatures locally.

JWT Token Input

Signature Verification

Enter secret to verify signature
HS256

What is a JSON Web Token?

JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.

This token consists of three parts separated by dots (.): Header, Payload, and Signature. Header specifies the signing algorithm; Payload contains the claims (user data); and Signature verifies that the sender is who they say they are and ensures the message wasn't changed along the way.