Inspect a JWT (decode only)
jwt_inspectDecode a JWT token to view its header and payload, and determine if a signature section is present and if the token has expired. Signatures are not verified.
Instructions
Decode a JWT's header and payload and report whether a signature segment is present and whether the token is expired. Does NOT verify the signature — decoding only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The compact JWT (header.payload.signature) |