Decode Jwt
decode_jwtDecode a JSON Web Token (keyless, offline): returns the header and payload JSON plus a summary of the standard claims (iss, sub, aud, exp/iat/nbf as ISO dates, and whether it is expired). NOTE: this decodes but does NOT verify the signature — a decoded token is not a verified/trusted token.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | A JWT (header.payload.signature). |