Sponsored
Ad slot is loading...

JWT Decoder

Decode JSON Web Tokens (JWT) to inspect header, payload, and signature. View claims like expiration, issuer, subject. Essential for debugging authentication and API tokens.

JWT Structure Reference

Header Claims
alg Algorithm (HS256, RS256)
typ Token type (JWT)
kid Key ID for key rotation
cty Content type
Payload Claims
sub Subject (user ID)
iss Issuer
aud Audience
exp Expiration time
iat Issued at time
nbf Not valid before
Algorithms
HS256 HMAC SHA-256
HS512 HMAC SHA-512
RS256 RSA SHA-256
RS512 RSA SHA-512
none Unsecured

Developer Use Cases

Auth Debug: Inspect login tokens
API Testing: Verify token claims
OAuth: Decode access tokens
SSO: Inspect SAML/OIDC tokens
Expiration: Check if token expired
Claims: Verify user permissions
Security: Audit token contents
Dev: Quick token inspection

⚠ Security Notes

• This tool ONLY decodes JWT - it does NOT verify the signature
• Decoding reveals payload contents without needing the secret key
• Always verify signatures in production using the proper secret/public key
• Never trust decoded claims without signature verification
• This runs entirely in browser - no tokens sent to servers
Sponsored
Ad slot is loading...