Decoding is not verification
A JWT decoder can read Base64URL segments without knowing the signing key. Anyone can alter those segments, so readable claims are not proof that the issuer created or approved the token.
Inspect token structure locally. Decoding reveals claims—it does not verify the signature.
{
"alg": "HS256",
"typ": "JWT"
}{
"sub": "dev-42",
"name": "Ada Lovelace",
"scope": [
"read:api",
"write:code"
],
"iat": 1735689600,
"exp": 1893456000
}This decoder only reads Base64URL segments. Trust claims only after verification with the issuer’s expected algorithm and key.
Tool documentation
Read JWT structure, claims, and time fields without transmitting credentials or bearer tokens to a decoder service.
Conversion runs locally in your browser.
Your tool input is never uploaded or logged.
Input stays on your device and is not persisted.
Add a three-part JSON Web Token to the input panel. Header and payload claims are decoded immediately in this browser tab.
Review the algorithm, issuer, audience, subject, scopes, and NumericDate claims such as iat, nbf, and exp when they are present.
Treat decoded claims as untrusted data until your application verifies the signature, expected algorithm, issuer, audience, and lifetime with the correct key.
A JWT decoder can read Base64URL segments without knowing the signing key. Anyone can alter those segments, so readable claims are not proof that the issuer created or approved the token.
JWT header and payload segments use URL-safe Base64 without required padding. DevCrate normalizes and decodes those segments, then parses their UTF-8 JSON locally.
Standard iat, nbf, and exp values are seconds since the Unix epoch. DevCrate displays deterministic ISO timestamps while preserving the original numeric values.
JWT decoding happens entirely in browser memory. DevCrate does not verify against, fetch from, or contact the token issuer, and it does not upload or persist the token. Ordinary static page requests may still be logged by the site host, but they never contain your JWT.