Decodificador JWT

Pega un JWT para decodificar su header y payload. Todo se ejecuta en tu navegador — los tokens nunca se envían.

Introduce un valor arriba para ver el resultado.
Introduce un valor arriba para ver el resultado.
Introduce un valor arriba para ver el resultado.
This tool decodes only — it does not verify the signature against a key. Treat decoded payload as untrusted until verified.

What is this for?

A JWT (JSON Web Token) is three base64url-encoded parts joined by dots: header.payload.signature. The header and payload are JSON objects you can inspect; the signature proves the token wasn't tampered with after issuance. This tool decodes the first two parts so you can see what's inside without the noise of base64 — useful when debugging auth flows, expired sessions, or "which user is this token for, exactly?".

When to use it

Common claims

Common gotchas