JWT Decoder and Generator

Decode, inspect, and generate JWT tokens for testing and debugging.

Decode JWT

Paste a JWT token (header.payload.signature) to view the header and payload as JSON. The signature is not validated, only shown.

Header (JSON)
Payload (JSON)

Generate / Sign JWT

Build a JWT from a JSON payload. You can generate unsigned tokens (alg: none) or HMAC SHA-256 tokens (HS256).