Bearer Token / JWT Quick Decoder

Paste any JWT or Bearer token to instantly decode and inspect its header and payload in your browser.

Paste a JWT above and click Decode to inspect the header and payload.

Copied!

Summary

Paste any JWT or Bearer token to instantly decode and inspect its header and payload in your browser.

How it works

  1. Paste your JWT or Bearer token into the input field.
  2. The tool splits the token on dots and Base64url-decodes the first two segments.
  3. The decoded header (algorithm, token type) is displayed in the left panel.
  4. The decoded payload (claims such as sub, exp, iat) appears in the right panel.
  5. Expiry and issued-at timestamps are converted to human-readable dates automatically.
  6. Click any field to copy its value to the clipboard.

Use cases

  • Quickly inspect claims inside an access token during API development.
  • Check token expiry without writing any code.
  • Debug authentication issues by reading the algorithm and key ID in the header.
  • Verify that a backend is issuing the correct subject and scope claims.
  • Decode tokens from CI/CD pipelines or cloud provider SDKs.
  • Onboard new team members by showing them what a JWT actually contains.

Frequently Asked Questions

Last updated: 2026-06-09 · Reviewed by Nham Vu