🔑

JWT Decoder

Decode JWT tokens to view claims and payload. Perfect for debugging authentication and API tokens.

100% FreeNo signupBrowser-based

Paste your JWT Token

How to Use

Step 1: Get Your Token

Copy a JWT token from your authentication response or browser storage.

Step 2: Paste Token

Paste the full token in the textarea above.

Step 3: View Contents

The payload will be automatically decoded and displayed as JSON.

What is JWT?

JWT (JSON Web Token) is a compact token format for securely transmitting information. It consists of three parts: header, payload, and signature.

Token Structure

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

Header.Payload.Signature

Frequently Asked Questions