A useful jq command line to decode a JWT Jan 14, 2026 $ echo "$JWT" | jq -R 'split(".") | select(length > 0) | .[0],.[1] | @base64d | fromjson'