Saltar al contenido
RapideTools

Decodificador JWT

Decodifica e inspecciona tokens JWT.

Paste a JWT to decode its header and payload as readable JSON. The token is decoded locally in your browser — it is never sent anywhere, and the signature is not verified.

La decodificación solo lee el token — NO verifica la firma. Nunca pegues tokens secretos o de producción.

Tu entrada se procesa localmente en tu navegador — nada se sube, almacena ni registra.

¿Te ahorró tiempo?Invítame un café

Cómo funciona

  1. 1 Paste your JWT.
  2. 2 The header and payload are decoded live.
  3. 3 Copy either section as JSON.

Casos de uso comunes

  • Inspect the claims in a token.
  • Check expiry and issued-at times.
  • Debug authentication during development.
  • See which algorithm a token uses.

Preguntas frecuentes

Is my input sent to a server?

No. Everything runs locally in your browser — your input is never uploaded, stored or logged.

Does this verify the signature?

No. Decoding only reads the header and payload — it does NOT verify the signature, so never trust a decoded token for security decisions.

Is my token uploaded?

No. The token is decoded entirely in your browser and is never sent to a server.

Is it really free?

Yes — free, with no signup and no limits.