JWTデコーダー
JSON Webトークンをデコードして、ヘッダー、ペイロード、署名を確認。無料・即時・100%プライベート — データがブラウザから送信されることはありません。
About JWT Decoder
JWT (JSON Web Token) is the standard for secure API authentication and information exchange. Our decoder lets you inspect any JWT:
- Header: Contains the signing algorithm (HS256, RS256, etc.) and token type
- Payload: Contains the claims — user ID, expiration, issuer, custom data
- Signature: Verifies the token hasn't been tampered with (requires secret key to verify)
Common Claims
| Claim | Meaning |
|---|---|
sub | Subject — typically the user ID |
iat | Issued At — when the token was created |
exp | Expiration — when the token expires |
iss | Issuer — who created the token |
aud | Audience — who the token is intended for |
🔒 All decoding happens in your browser. Tokens never leave your device.
About JWT Decoder
JSON Webトークン(JWT)をデコードして検査します。ヘッダー、ペイロード、署名を表示。トークンの有効期限、発行者、クレームを検証。認証やAPI連携のデバッグに役立つ開発者ツールです。すべてブラウザ内で完結します。
ヘッダー&ペイロード表示
JWTの3つの部分すべてをデコード。アルゴリズムタイプ、トークンのクレーム、有効期限、発行者、カスタムフィールドを表示します。
有効期限チェック
expクレームを自動的にチェックし、トークンが期限切れかどうかを表示。色分けされた有効/期限切れインジケーター。
整形されたJSON
ヘッダーとペイロードの両方に対して整形されたJSON出力。読みやすく、コピーやクレームの検査が簡単です。
安全&ローカル
JWTはブラウザ内でローカルにデコードされます。トークンがサーバーに送信されることはありません — 本番環境の認証情報にも安全です。