Decode JWT
decode_jwtDecode JWT header and payload to inspect claims and expiry, without signature verification. Use only for reading data, not for trusting authenticity.
Instructions
Decode a JSON Web Token's header and payload and report expiry. This DECODES ONLY — it does not verify the signature, so never treat the contents as trusted on the strength of this output. Models asked to read a JWT tend to invent its claims; this reads them. Web version: https://buildutilities.com/jwt-decoder
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The JWT, optionally prefixed with 'Bearer ' |