See inside a JWT — header, payload, and whether it has expired
jwt_decodeDecodes the header and payload of a JWT and reports issued-at / expiry as readable timestamps plus seconds remaining. The signature is NOT verified and the response says so — decoding is fine for debugging a token you already hold, but never treat these values as proof of anything; verification needs the secret and belongs in your own service.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The JWT string. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||