JWT Decoder
Paste any JWT and instantly see the decoded header, payload, and claims

Paste any JWT token and instantly see the decoded header, payload claims, and signature. Inspect expiry times, user IDs, permissions, and any custom claims — without needing to write code.
What Is a JWT?
A JSON Web Token (JWT) is a compact, URL-safe token used for authentication and authorisation. It consists of three Base64-encoded parts separated by dots:
header.payload.signature- Header — algorithm and token type
- Payload — claims (user ID, roles, expiry, etc.)
- Signature — cryptographic proof the token wasn't tampered with
How to Read JWT Claims
Common standard claims (iss, sub, aud, exp, iat) plus custom claims from your identity provider:
| Claim | Meaning |
|---|---|
sub |
Subject (usually user ID) |
iss |
Issuer (who created the token) |
exp |
Expiry timestamp (Unix epoch) |
iat |
Issued at timestamp |
aud |
Audience (intended recipient) |
Security Note
This decoder runs entirely in your browser — no token data is sent to any server. That said, never paste production JWT tokens into untrusted online tools. Use this for debugging only.
JWT in APIs and Automations
If you're building API integrations or automation workflows that use Bearer token authentication, this tool helps you inspect tokens to debug auth failures, check expiry, and verify claims. API Automation for Businesses covers Bearer token auth in the broader context of connecting business APIs, and the Base64 Encoder/Decoder is useful if you need to inspect the raw encoded segments manually.

Want this built against your real numbers?
A 30-minute call to scope the workflow, agent, or automation you actually need.
More developer tools
All tools.env Manager
Validate, compare, and generate templates for your .env files — without exposing secrets
.gitignore Generator
Generate a complete .gitignore for any stack — languages, frameworks, and IDEs covered
API Mock Server
Create live mock API endpoints with custom JSON responses in under a minute
API Request Tester
Send HTTP requests to any API endpoint instantly — no install needed
Base64 Encoder/Decoder
Encode or decode any Base64 string instantly — no install, no login
Cron Expression Generator
Build any cron schedule visually and get the correct expression instantly
Have a workflow that's burning hours every week?
Bring me one real bottleneck. I'll tell you whether it's worth automating, and what it would take.