JWT Decoder
Inspect tokens from OAuth flows and APIs when debugging scopes and expiry. Remember: decoding is not verification; never trust unsigned payloads blindly.
Enter your values here
JWT string
Decoding is local only — this does not verify signatures.
Status
Decoded
Segments
3
Header
{
"alg": "HS256",
"typ": "JWT"
}
Payload
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022
}
Related tools
More utilities you might find useful.