Developer Tools

JWT Decoder for Header and Payload

Decode JWT structure into formatted Header and Payload JSON with algorithm and expiry hints. Does not verify signatures; all processing stays local.

JWTDecodeToken

Favorite this tool

No favorite storage mode has been selected.

Quick actions

Copy this tool URL or open the system share sheet on a supported device.

Use cases

  • Read exp and business claims in access tokens
  • Check alg and typ in the header
  • Debug opaque backend JWT fields

How to use

  1. Paste the full JWT string
  2. Review Header, Payload, and Signature sections
  3. Copy segments

Example input and output

JWT

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjMifQ.sig

Payload

{
  "sub": "123"
}

FAQ

Does it verify signatures?

No. It decodes structure only and cannot prove issuer trust.

Does the token leave the browser?

No. Decoding runs locally in your browser.

Tools

Related tools

Continue with another translated tool for a nearby task.

Base64 Encode/Decode

Base64 Encoder and Decoder

Available

Encode and decode Base64 in the browser, with standard and URL-safe variants, automatic direction detection, and optional file-to-Base64 conversion. Useful for API debugging and local data prep.

Base64 Encoding Developer

JWT Payload Viewer

JWT Header and Payload Decoder

Available

Decode JWTs locally into readable Header and Payload JSON. Tokens never leave the browser.

JWT Token Security

HMAC Generator

HMAC Generator - API Signature Digests

Available

Generate an HMAC locally from a message and key with SHA-1/256/384/512, outputting Hex and Base64. Useful for API signing and webhook verification checks.

HMAC Signature Hash