JWT Generator

Generate JSON Web Tokens (JWT) for testing and development purposes.

Configuration

Payload (Claims)

Add Standard Claims:

Generated JWT

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTc3OTA4NzI3NSwiZXhwIjoxNzc5MDkwODc1fQ.eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHg2YWMyMzZlMg

Decoded Header

{
  "alg": "HS256",
  "typ": "JWT"
}

Decoded Payload

{
  "sub": "1234567890",
  "name": "John Doe",
  "admin": true,
  "iat": 1779087275,
  "exp": 1779090875
}

Warning: This tool is for testing purposes only. The signature is simulated and not cryptographically secure. Never use these tokens in production.

πŸ’‘

Help us improve!

How would you rate the JWT Generator?