JWT Decoder

Decode JWT header and payload claims locally in your browser.

JWT

Decoded locally in your browser. Do not paste sensitive production tokens.

Header

Payload

Signature

SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

This is the raw signature segment. It is not verified — no signing key was provided, and this tool never claims to validate a signature it can't check.

About the JWT Decoder

A JWT is three Base64URL segments separated by dots: header, payload and signature. The first two are only encoded, not encrypted, so anyone holding the token can read the claims.

This decoder never verifies the signature — doing so requires the signing key, which should never leave your server. Treat the decoded output as informational and never paste production tokens into any online tool, including this one.

Frequently asked questions

Related tools

JSON Formatter

Formatters

Format, beautify and validate JSON with clear error messages.

Open Tool

JSON Validator

Formatters

Check whether a JSON document is valid and locate syntax errors.

Open Tool

JSON to YAML

Converters

Convert JSON documents into readable YAML.

Open Tool

YAML to JSON

Converters

Parse YAML and convert it into formatted JSON.

Open Tool