decode_jwt
Decode JWT tokens into header, payload, and signature parts for inspection. View claims and algorithm without signature verification.
Instructions
Decode a JWT token into its header, payload, and signature parts.
Use this to inspect JWT tokens without verifying signatures.
Returns the header (alg, typ) and payload (claims) decoded from base64.
Parameters:
token — The full JWT token string (3 dot-separated base64 parts).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |